:root {
    --primary: #1d4fb8;
    --accent: #e53935;
    --background: #f5f5f5;
    --text: #333333;
    --border: #e6e6e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .04);
}

header {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 30px;
    margin-bottom: 40px;

    display: flex;
    justify-content: center;
}

.logo {
    width: 320px;
    max-width: 100%;
    height: auto;
    display: block;
}

h1 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

h2 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 18px;
    margin-top: 10px;
}

p {
    margin-bottom: 18px;
}

section {
    margin-bottom: 40px;
}

.section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    color: #555;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--accent);
}

.contact-item a {
    font-size: 1.2rem;
    font-weight: 700;
}

ul,
ol {
    margin: 18px 0;
    padding-left: 28px;
    max-width: 70ch;
}

li {
    margin-bottom: 8px;
}

li:last-child {
    margin-bottom: 0;
}

ul + p,
ol + p {
    margin-top: 18px;
}

.opening-hours {
    border-collapse: collapse;
    margin-top: 10px;
}

.opening-hours td {
    padding: 6px 24px 6px 0;
    vertical-align: top;
}

.opening-hours td:first-child {
    font-weight: bold;
    white-space: nowrap;
}

footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: #666;
    font-size: .95rem;
}

footer strong {
    display: block;
    color: #444;
    margin-bottom: 4px;
}

footer nav {
    margin-top: 15px;
}

footer nav a {
    margin: 0 10px;
}

.address p {
    margin-bottom: 6px;
}

.team-grid {
    display: grid;
    gap: 24px;
    margin-top: 30px;
}

.team-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    background: #fff;
}

.team-card h2 {
    margin: 0 0 18px;
    color: var(--primary);
    font-size: 1.35rem;
}

.team-card p {
    margin-bottom: 12px;
    max-width: none;
}

.team-card strong {
    color: #444;
}

.team-card a {
    font-weight: 600;
}

@media (min-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:768px) {

    body {
        background: #fff;
    }

    .container {
        margin: 0;
        padding: 32px 24px;
        border-radius: 0;
        box-shadow: none;
    }

    .logo {
        width: 260px;
    }

    h1 {
        font-size: 1.7rem;
    }

}