body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #24323d;
    background: #f8fbfa;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
}

.header {
    background: white;
    padding: 22px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    gap: 28px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: #24323d;
    font-weight: 500;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2f7d71;
}

.hero {
    min-height: 85vh;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    background: rgba(22, 41, 47, 0.55);
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin: 20px 0 35px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.button {
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.primary {
    background: #2f7d71;
    color: white;
}

.secondary {
    background: white;
    color: #24323d;
}

.opening-hours {
    padding: 70px 0;
    background: white;
    text-align: center;
}

.opening-hours table {
    margin: auto;
    font-size: 1.1rem;
}

.opening-hours td {
    padding: 8px 25px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 24px;
    padding: 70px 0;
}

.card {
    background: white;
    padding: 32px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
    padding: 60px 0;
}

.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    text-align: center;
}

.team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.footer {
    background: #24323d;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin: 20px 0;
}

.footer-links a {
    color: white;
    margin: 0 12px;
    text-decoration: none;
}
