*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    background: #fafaf8;
}

a {
    color: rgb(146, 197, 122);
}

.page-wrapper {
    max-width: 780px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    background: #fff;
    padding: 0 20px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #4a4a4a;
}

.logo-group img {
    height: 50px;
    width: auto;
}

.logo-group span {
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    font-weight: 700;
    color: rgb(146, 197, 122);
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    gap: 24px;
}

.nav-desktop a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: rgb(146, 197, 122);
    border-bottom-color: rgb(146, 197, 122);
}

/* Hamburger (Mobile only) */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #4a4a4a;
    margin: 5px 0;
    transition: 0.3s;
}

.nav-mobile {
    display: none;
}

.nav-mobile a {
    display: block;
    padding: 12px 0;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    border-top: 1px solid #eee;
}

.nav-mobile a:hover,
.nav-mobile a.active {
    color: rgb(146, 197, 122);
}

.header-accent {
    height: 3px;
    background: linear-gradient(to right, rgb(146, 197, 122), rgba(146, 197, 122, 0.2));
}

/* Main content */
main {
    flex: 1;
    padding: 40px 20px 60px;
}

h1, h2 {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    color: rgb(146, 197, 122);
    line-height: 1.3;
}

h2 {
    font-size: 30px;
    margin-bottom: 24px;
}

h1 {
    font-size: 30px;
    margin-bottom: 24px;
}

.content p {
    margin-bottom: 16px;
}

.content p:last-child {
    margin-bottom: 0;
}

/* Ansprechpartner */
.subtitle {
    text-align: center;
    margin-bottom: 36px;
    color: #4a4a4a;
}

.team {
    display: flex;
    gap: 40px;
}

.person {
    flex: 1;
}

.person h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    font-weight: 400;
    color: rgb(146, 197, 122);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.person .name {
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.person img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 12px;
}

.person .email {
    margin-bottom: 12px;
}

.person .role {
    color: #4a4a4a;
}

.person .role + .role {
    margin-top: 4px;
}

/* Teilnehmende Ärzte */
.doctors {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.doctor-card {
    background: #fff;
    border-left: 3px solid rgb(146, 197, 122);
    padding: 20px 24px;
}

.doctor-card h3 {
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    font-weight: 400;
    color: rgb(146, 197, 122);
    margin-bottom: 4px;
}

.doctor-card .doctor-practice {
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.doctor-card p {
    margin-bottom: 6px;
}

.doctor-card p:last-child {
    margin-bottom: 0;
}

/* Impressum & Datenschutz */
.legal h3 {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    color: rgb(146, 197, 122);
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 8px;
}

.legal h3:first-child {
    margin-top: 0;
}

.legal p {
    margin-bottom: 8px;
}

/* Footer */
footer {
    background: #f0f0ed;
    padding: 20px;
    display: flex;
    gap: 20px;
}

footer a {
    color: rgb(146, 197, 122);
    text-decoration: none;
    font-size: 14px;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-mobile.open {
        display: block;
    }

    h1, h2 {
        font-size: 24px;
    }

    .team {
        flex-direction: column;
        gap: 30px;
    }

    main {
        padding: 25px 15px 40px;
    }

    .header-top {
        padding: 12px 0;
    }

    .logo-group img {
        height: 40px;
    }

    .logo-group span {
        font-size: 17px;
    }

    footer {
        padding: 16px 15px;
    }
}
