/* ===============================
   DESIGN SYSTEM
================================= */
:root {
    --color-primary: #2f3861;
    --color-secondary: #9096ac;
    --color-bg-light: #ffffff;
    --color-text: #4a4a49;
    --color-white: #ffffff;
    --color-accent: #cda177;
    --color-selection: rgba(1, 33, 105, 0.5);

    --font-base: "Montserrat";

    --max-width: 1200px;
    --radius: 4px;
    --shadow-soft: 0 6px 20px rgba(0, 0, 0, 0.06);
    --header-height: 70px;

    --bg-page: var(--color-bg-light);
    --bg-surface: var(--color-white);
    --text-main: var(--color-text);
    --text-heading: var(--color-primary);
    --border-accent: var(--color-primary);
}





/* ===============================
   RESET & BASIS
================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    min-width: 0;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-base);
    background: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.main {
    flex: 1;
    padding-top: var(--header-height);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    z-index: 100;
}


/* ===============================
   LAYOUT
================================= */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}


.section {
    padding: 4rem 0;
}

.section.light {
    background: var(--color-bg-light);
}


.main,
.container,
.card,
.info-card,
.leistung-card {
    min-width: 0;
}


/* ===============================
   TYPOGRAFIE
================================= */
h1,
h2,
h3 {
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: var(--color-accent);
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

p {
    max-width: 65ch;
}

b,
strong {
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
}

.text-block {
    max-width: 70ch;
    margin-left: 0;
    margin-right: 0;
}

p,
li,
td,
a,
span {
    overflow-wrap: break-word;
    word-break: break-word;
}

input,
textarea,
button,
.a11y-panel,
select {
    font-family: var(--font-base);
}

::selection {
    background-color: var(--color-selection);
    color: var(--color-white);
}

img {
    content-visibility: auto;
}

/* ===============================
   FLOATING SVG BUTTON
================================ */

.floating-termin-svg {
    position: fixed;
    right: 0rem;
    bottom: 0rem;
    z-index: 1000;

    display: block;
    line-height: 0;
    /* 🔥 verhindert unsichtbare Abstände */
}

.floating-termin-svg img {
    width: 200px;
    /* 🔧 HIER steuerst du die Größe */
    height: auto;
    display: block;
    cursor: pointer;

    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
    transition: transform 0.2s ease, filter 0.2s ease;
}

/* Mobile */
@media (max-width: 600px) {
    .floating-termin-svg {
        right: 0rem;
        bottom: 0rem;
    }

    .floating-termin-svg img {
        width: 150px;
    }
}

/* ===============================
   HEADER / NAVIGATION
================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    padding: 10px;
    background: var(--color-bg-light);
    z-index: 100;
}

.header-inner {
    position: relative;
    /* 🔥 ENTSCHEIDEND */
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo links fixieren */
.logo-wrap {
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    height: 42px;
}

.logo-weiß {
    height: 42px;
}



/* Navigation rechts */
.nav-menu {
    display: flex;
    gap: 2rem;
    text-transform: uppercase;
}


.nav-menu a {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 500;
    position: relative;
}


.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}



.nav-menu a.active {
    color: var(--color-accent);
}

.nav-menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}




.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;

    width: 40px;
    height: 40px;

    align-items: center;
    justify-content: center;
}

.nav-toggle img {
    width: 28px;
    height: 28px;
    display: block;
}




.Namen {
    font-weight: 500;
    font-size: 1rem;
    color: #4a4a49;
    font-style: normal;
}

/* Mobile */
@media (max-width: 768px) {

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        box-shadow: var(--shadow-soft);
        display: none;
        text-transform: uppercase;
    }

    .nav-menu.open {
        display: flex;
    }
}



/* ===============================
   HERO
================================= */
.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    background: url("../assets/hero.webp") center / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
    /* ← Transparenz hier steuern */
    z-index: 0;
}

.hero>* {
    position: relative;
    z-index: 1;
}


.hero-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    margin-left: 5%;
    max-width: 700px;
    box-shadow: var(--shadow-soft);
}



.hero-text h1 {
    hyphens: none;
    word-break: normal;
    overflow-wrap: normal;
    color: var(--color-accent);
    text-transform: none;
}


.hero-text img {
    width: 22px;
    height: 22px;
    opacity: 0.65;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    margin-top: 1.5rem;
    padding: 0.75rem 1.6rem;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: var(--radius);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}



/* ===============================
   SUB HERO (UNTERSEITEN)
================================ */

.sub-hero {
    position: relative;
    min-height: 32vh;
    /* 🔽 kleiner als vorher */
    width: 100%;
    display: flex;
    align-items: center;
    /* vertikal */
    justify-content: center;
    /* horizontal */

    background:
        var(--hero-image) center center / cover no-repeat;

}


.sub-hero-inner {
    max-width: var(--max-width);
    padding: 1.5rem;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
}

.sub-hero-inner::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin: 1.2rem auto 0;
    background: var(--color-accent);
}

.sub-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.35);
    /* ← Transparenz hier steuern */
    z-index: 0;
}



.sub-hero>* {
    position: relative;
    z-index: 1;
}


.sub-hero-text {
    padding: 3rem;
    margin-left: 5%;
    max-width: 700px;
    box-shadow: var(--shadow-soft);
    background: rgba(255, 255, 255, 0.9);
}

.sub-hero h1 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--color-primary);
}

.sub-hero p {
    margin-top: 0.6rem;
    font-size: 1rem;
    color: var(--color-text);
    max-width: 60ch;
}

@media (max-width: 600px) {
    .sub-hero {
        min-height: 30vh;
    }

    .sub-hero p {
        font-size: 0.95rem;
    }
}

.sub-hero.compact {
    min-height: 28vh;
}


/* ===============================
   KARTEN & GRID
================================= */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--color-white);
    padding: 2rem;
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-soft);
    margin-top: 2rem;
}

/* ===============================
   BILDER
================================= */
img {
    max-width: 100%;
    display: block;
}

.team-img {
    margin: 2rem 0;
    margin: 0 auto;
    border-radius: var(--radius);
    width: 75%;
}

/* ===============================
   FOOTER
================================= */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 0;
    margin-top: auto;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* RECHTE LINK-GRUPPE */
.links-rechts-footer {
    display: flex;
    /* 🔥 wichtig */
    gap: 1.2rem;
    /* Abstand zwischen Links */
}

.footer a {
    color: var(--color-white);
    text-decoration: none;
    opacity: 0.9;
}

.footer a:hover {
    opacity: 0.5;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 768px) {

    .nav-toggle {
        display: block;
        position: relative;
        z-index: 1002;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);

        width: 100vw;
        max-width: none;
        height: calc(100vh - 70px);

        margin: 0;
        padding: 0;

        background: rgba(255, 255, 255, 0.96);

        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 2rem;

        box-shadow: none;
        border: none;
        z-index: 1000;
        box-sizing: border-box;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        text-align: center;

        padding: 0.4rem 0;

        font-size: 1.1rem;
        letter-spacing: 0.04em;
        color: var(--color-primary);
    }

    .hero-text {
        margin: 1.5rem;
    }

    .hero-text h1 {
        font-size: clamp(1.6rem, 3vw, 2rem);
    }
}

@media (max-width: 600px) {

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }

}

/* ===============================
   KONTAKTSEITE
================================= */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;

    /* 🔥 HIER DER FIX */
    max-width: 100%;
}

.contact-card {
    background: var(--color-white);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--color-primary);
    width: 100%;
}

.opening-hours {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.opening-hours span:last-child {
    font-weight: 500;
}

/* ===============================
   TEAMSEITE
================================ */

.team-section {
    padding: 4rem 0;
}

.intro-text {
    margin: 1.5rem 0 3rem;
    max-width: 60ch;
    color: var(--color-text);
    line-height: 1.7;
    word-break: keep-all;
}

/* Desktop: maximal 3 Karten pro Reihe */
.team-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

/* Einzelne Karte */
.team-member {
    background: #fff;
    border-radius: var(--radius);
    padding: 2.2rem 1.5rem;
    min-height: 330px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-member:hover {
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

/* Teamfoto */
.team-photo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.25));
}

/* Name */
.team-member h3 {
    margin: 0 0 0.6rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-primary);
}

/* Funktion */
.team-member p {
    margin: 0;
    color: var(--color-secondary);
    line-height: 1.55;
    font-size: 1rem;
}

/* Button */
.btn-lebenslauf {
    margin-top: 1.1rem;
    padding: 0.55rem 1rem;

    background: transparent;
    color: var(--color-primary);

    border: 2px solid var(--color-primary);
    border-radius: 6px;

    font: inherit;
    font-size: 0.95rem;
    cursor: pointer;

    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-lebenslauf:hover {
    transform: translateY(-2px);
}

/* Tablet: 2 Karten pro Reihe */
@media (max-width: 950px) {
    .team-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Handy: 1 Karte pro Reihe */
@media (max-width: 650px) {
    .team-section {
        padding: 3rem 0;
    }

    .team-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-member {
        min-height: auto;
        padding: 2rem 1.25rem;
    }

    .team-photo {
        width: 140px;
        height: 140px;
    }
}

/* ===============================
   SPRECHZEITEN – CONTACT CARD
================================ */

.sprechzeiten-grid {
    display: grid;
    grid-template-columns: minmax(95px, 1fr) minmax(0, 1.6fr);
    column-gap: 1.6rem;
    row-gap: 0.85rem;
    margin-top: 1.5rem;
    width: 100%;
}

.sprechzeiten-grid .day {
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.sprechzeiten-grid .time {
    color: var(--color-text);
    line-height: 1.45;
    min-width: 0;
    white-space: normal;
}

/* Notfallsprechstunde als eigene Box */
.notfall-box {
    margin-top: 1.2rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    background: rgba(44, 56, 101, 0.06);

    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.notfall-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-primary);
}

.notfall-time {
    font-size: 0.95rem;
    color: var(--color-text);
}

/* Hinweistext */
.sprechzeiten-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text);
    opacity: 0.85;
    line-height: 1.55;
}

.sprechzeiten-note p {
    margin: 0.35rem 0;
}

.sprechzeiten-note a {
    font-style: italic;
    text-decoration: none;
    color: var(--color-accent);
}

.sprechzeiten-note a:hover {
    opacity: 0.8;
}

/* Mobile */
@media (max-width: 800px) {
    .sprechzeiten-grid {
        grid-template-columns: 1fr;
        row-gap: 0.35rem;
    }

    .sprechzeiten-grid .day {
        margin-top: 0.5rem;
    }

    .sprechzeiten-grid .time {
        margin-bottom: 0.4rem;
    }

    .notfall-box {
        margin-top: 1rem;
    }
}

/* ===============================
   CONTACT CARD – KONTAKT
================================ */

.kontakt-liste {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.kontakt-zeile {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    text-decoration: none;
    color: var(--color-text);
}

.kontakt-zeile img {
    width: 22px;
    height: 22px;
    opacity: 0.65;
    flex-shrink: 0;
}

.kontakt-icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.kontakt-icon img {
    position: absolute;
    inset: 0;
    width: 22px;
    height: 22px;
    opacity: 0.65;
}



.kontakt-zeile span {
    line-height: 1.4;
}

.kontakt-zeile:hover span {
    text-decoration: none;
    opacity: 0.5;
}


/* ===============================
   CONTACT CARD – BANK
================================ */

.bank-liste {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
}

.bank-liste li {
    margin: 0.4rem 0;
}

.bank-liste a {
    text-decoration: none;
    color: var(--color-text);
}

/* ===============================
   LEISTUNGEN
================================ */

.container-wide {
    max-width: 1600px;
    /* 🔥 breiter als normaler Content */
    margin: 0 auto;
    padding: 2rem;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.leistung-card {
    background: var(--color-white);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--color-primary);
}

.leistung-card h3 {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--color-primary);
}

.leistung-card ul {
    padding-left: 1.2rem;
    margin: 0.8rem 0 0;
}

.leistung-card li {
    margin: 0.4rem 0;
}

.leistungen-intro {
    max-width: 75ch;
    margin-bottom: 4rem;
    text-align: left;
}

.leistungen-intro p {
    margin-bottom: 1.2rem;
}

.leistungen-claim {
    margin-top: 2rem;
    font-weight: 600;
    color: var(--color-primary);
}

li a {
    color: var(--color-accent);
    font-weight: 500;
    font-style: italic;
    text-decoration: none;
}

li a:hover {
    color: var(--color-secondary);
}

/* Mobile */
@media (max-width: 700px) {
    .leistungen-grid {
        grid-template-columns: 1fr;
    }

    .leistung-card {
        padding: 2rem;
    }
}

/* ===============================
   PRAXIS – INHALT
================================ */

.text-block {
    max-width: 70ch;
}

.closing-text {
    max-width: 65ch;
}

/* ===============================
   PRAXIS – GALERIE
================================ */

.praxis-galerie {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.praxis-galerie img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius);
    filter: contrast(0.9) saturate(0.85);
}

/* ===============================
   INFO-CARDS (PRAXIS)
================================ */

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 2.5rem;
}

.info-card {
    background: var(--color-white);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--color-primary);
}

.info-card h2 {
    margin-top: 0;
}

.info-card p {
    max-width: none;
    /* wichtig: nicht künstlich schmal */
}

/* Mobile */
@media (max-width: 600px) {
    .info-card {
        padding: 2rem;
    }
}

/* ===============================
RECHTSTEXTE
Impressum / Datenschutz
================================ */



.legal-container {
    max-width: 1180px;
}

.legal-hero .sub-hero-inner {
    max-width: 1180px;
}

.legal-intro {
    max-width: 820px;
    margin-bottom: 3rem;
}

.legal-intro h2 {
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.legal-intro p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text);
    opacity: 0.9;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
}

.legal-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 1.7rem;
    box-shadow: var(--shadow-soft);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.legal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.legal-card h3 {
    margin: 0 0 0.85rem;
    color: var(--color-primary);
    font-size: 1.15rem;
    line-height: 1.3;
}

.legal-card p {
    max-width: none;
    margin: 0 0 1rem;
    line-height: 1.75;
    color: var(--color-text);
}

.legal-card p:last-child {
    margin-bottom: 0;
}

.legal-card a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.legal-card a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.legal-list {
    margin: 0.4rem 0 1rem;
    padding-left: 1.2rem;
}

.legal-list li {
    margin-bottom: 0.45rem;
    line-height: 1.65;
}

.eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-secondary);
}

/* ===============================
RESPONSIVE
================================ */

@media (max-width: 900px) {
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .legal-intro {
        margin-bottom: 2rem;
    }

    .legal-card {
        padding: 1.4rem;
        border-radius: 1rem;
    }

}

@media (max-width: 600px) {
    .legal-section {
        padding-top: 2.5rem;
    }

    .legal-intro h2 {
        font-size: 1.55rem;
    }

    .legal-intro p {
        font-size: 1rem;
    }

    .legal-card h3 {
        font-size: 1.05rem;
    }

    .legal-card p,
    .legal-list li {
        font-size: 0.95rem;
        line-height: 1.65;
    }

}


/* ===============================
   GOÄ-TABELLE
================================ */

.goae-table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem 0;
    font-size: 0.95rem;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

/* Kopfzeile */
.goae-table thead th {
    text-align: left;
    padding: 0.9rem 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Zellen */
.goae-table td {
    padding: 0.8rem 1rem;
    vertical-align: top;
    border-bottom: 1px solid #e6e6e6;
}

/* Spalten-Ausrichtung */
.goae-table td:nth-child(1),
.goae-table td:nth-child(3) {
    white-space: nowrap;
    font-weight: 500;
    color: var(--color-primary);
}

.goae-table td:nth-child(4) {
    text-align: right;
    white-space: nowrap;
    font-weight: 500;
}

/* Zebra-Streifen (ruhig) */
.goae-table tbody tr:nth-child(even) {
    background: #fafafa;
}



/* Summenzeile */
.goae-table tfoot td {
    padding: 1rem;
    font-weight: 600;
    background: var(--color-bg-light);
    border-top: 2px solid var(--color-primary);
}

.goae-table tfoot td:last-child {
    text-align: right;
    color: var(--color-primary);
}

.goae-table {
    table-layout: fixed;
}

.goae-table td {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 700px) {
    .goae-table {
        display: block;
        width: 100%;
        overflow-x: hidden;
    }
}


/* ===============================
   MOBILE DARSTELLUNG
================================ */

@media (max-width: 700px) {

    /* Card-Layout bleibt */
    .goae-table tr {
        padding: 1.2rem 1.4rem;
    }

    /* GOÄ-Nr. */
    .goae-table td:nth-child(1) {
        font-size: 0.8rem;
        color: var(--color-secondary);
        margin-bottom: 0.4rem;
    }

    /* LEISTUNG = Fokus */
    .goae-table td:nth-child(2) {
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: none;
        /* 🔥 empfehlenswert */
        color: var(--color-primary);
        margin-bottom: 0.6rem;
        line-height: 1.45;
    }

    /* Satz */
    .goae-table td:nth-child(3) {
        font-size: 0.85rem;
        color: var(--color-secondary);
        margin-bottom: 0.4rem;
    }

    /* Betrag */
    .goae-table td:nth-child(4) {
        margin-top: 0.6rem;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--color-primary);
        text-align: right;
    }
}

a {
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.a11y-toggle {
    position: fixed;
    bottom: 1.2rem;
    left: 1.2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: var(--color-primary);
    cursor: pointer;
    z-index: 1200;
}

.a11y-toggle img {
    width: 26px;
    height: 26px;
    margin: auto;
}

/* ===============================
   A11Y PANEL
================================ */

.a11y-toggle {
    position: fixed;
    bottom: 1.2rem;
    left: 1.2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: var(--color-primary);
    cursor: pointer;
    z-index: 1200;
}

.a11y-toggle img {
    width: 26px;
    height: 26px;
}

/* Panel */
.a11y-panel {
    position: fixed;
    bottom: 80px;
    left: 1.2rem;
    width: 260px;
    background: #fff;
    color: #000;
    padding: 1.2rem;
    box-shadow: var(--shadow-soft);
    border-radius: 6px;
    z-index: 1200;
}

.a11y-panel h2 {
    font-size: 1.1rem;
    margin-top: 0;
}

.a11y-group {
    margin-bottom: 1rem;
}

.a11y-buttons {
    display: flex;
    gap: 0.5rem;
}

.a11y-buttons button,
.a11y-close {
    padding: 0.4rem 0.8rem;
    border: 1px solid #ccc;
    background: #f5f5f5;
    cursor: pointer;
}

/* ===============================
   HIGH CONTRAST MODE
================================ */

body.high-contrast {
    background: var(--color-text);
    color: var(--color-white);
}

body.high-contrast .leistungen-card li {
    background: var(--color-text);
    color: var(--color-text);
}

body.high-contrast a {
    color: #ffd400;
}

body.high-contrast .header,
body.high-contrast .footer,
body.high-contrast .card,
body.high-contrast .info-card {
    background: var(--color-text);
    color: var(--color-white);
    border-color: #ffd400;
}

.cv-section {
    padding: 4rem 1.5rem;
    background: var(--color-bg-light);
}

.cv-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 3rem;
}

.cv-title {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.cv-intro {
    max-width: 60ch;
    margin-bottom: 2.5rem;
}

.cv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cv-list li {
    margin-bottom: 1.2rem;
    font-weight: bold;
}

.cv-year {
    font-weight: 600;
    min-width: 90px;
    display: inline-block;
    color: var(--color-primary);
    font-weight: normal;
}

.cv-place {
    font-size: 0.95rem;
    color: var(--color-secondary);
    font-weight: normal;
}

.cv-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

/* Mobile */
@media (max-width: 900px) {
    .cv-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   LEBENSLAUF TOGGLE
================================ */

.cv-section {
    max-height: 0;
    overflow: hidden;
    opacity: 0;

    transition:
        max-height 0.6s ease,
        opacity 0.4s ease,
        padding 0.4s ease,
        margin 0.4s ease;

    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
}

.cv-section.open {
    max-height: 2500px;
    opacity: 1;

    padding-top: 5rem;
    padding-bottom: 5rem;
    margin-top: 3rem;
}


/* ===============================
   Rezeptformular – Praxis CI
================================ */

.recipe-order {
    max-width: 640px;
}

.recipe-order__title {
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.recipe-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 0.35rem;
}

.form-field input,
.form-field textarea {
    border: 1px solid var(--color-secondary);
    border-radius: var(--radius);
    padding: 0.65rem 0.7rem;
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-bg-light);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-soft)
}

.form-field textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
}

.form-submit:hover {
    background: color-mix(in srgb, var(--color-primary) 85%, black);
}

.form-success {
    color: var(--color-primary);
    font-weight: 500;
}

.btn-lebenslauf {
    border: 2px solid var(--color-primary);
    opacity: 1;
    background-color: transparent;
    box-shadow: var(--shadow-soft);
    padding: 0.5rem;
    border-radius: var(--radius);
    margin-top: 10px;
    color: var(--color-primary);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-lebenslauf:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.nav-menu a:focus,
.nav-menu a:focus-visible,
.nav-toggle:focus,
.nav-toggle:focus-visible {
    outline: none;
    box-shadow: none;
}

/* ===============================
   ===== MOBILE WIDTH FIXES =====
   ans Dateiende setzen
================================= */

/* Global overflow guard */
html,
body {
    overflow-x: hidden;
}

/* harte Wortumbrüche */
h1,
h2,
h3,
p,
li,
td,
span {
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

/* Container nie breiter als Viewport */
.section,
.main {
    max-width: 100%;
}

/* GRID MIN WIDTH FIXES */

.leistungen-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
}

.info-cards {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
}

.contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
}

.grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Card padding mobil reduzieren */
@media (max-width: 600px) {

    .leistung-card,
    .info-card,
    .contact-card,
    .card {
        padding: 1.6rem !important;
    }
}

/* Hero mobile safe */
@media (max-width: 600px) {

    .hero-text,
    .sub-hero-text {
        margin: 1rem !important;
        padding: 1.5rem !important;
        max-width: 100%;
    }
}

/* Nav Menu darf nicht Viewport sprengen */
@media (max-width: 768px) {
    .nav-menu {
        width: calc(100vw - 32px);
        max-width: 320px;
    }
}

/* Tabellen dürfen umbrechen */
.goae-table td {
    white-space: normal !important;
}

/* Bilder nie breiter */
img {
    max-width: 100%;
    height: auto;
}

/* Floating Button begrenzen */
.floating-termin-svg img {
    max-width: 45vw;
}

/* ===============================
   MOBILE GOÄ-TABELLE – CARD VIEW
================================ */

@media (max-width: 700px) {

    .goae-table,
    .goae-table thead,
    .goae-table tbody,
    .goae-table th,
    .goae-table tr {
        display: block;
        width: 100%;
    }

    .goae-table thead {
        display: none;
        word-break: none;
    }

    .goae-table tr {
        margin-bottom: 1.2rem;
        background: var(--color-bg-light);
        box-shadow: var(--shadow-soft);
        padding: 1rem;
    }

    .goae-table td {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding: 0.4rem 0;
        border: none;
        text-align: right;
    }

    .goae-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--color-primary);
        text-transform: uppercase;
        text-align: left;
        flex: 1;
    }

    .goae-table td:last-child {
        font-weight: 600;
    }

    .goae-table tfoot {
        display: block;
    }

    .goae-table tfoot tr {
        background: var(--color-primary);
        color: white;
        border-radius: var(--radius);
    }

    .goae-table tfoot td::before {
        content: "";
    }

    .goae-table td::before {
        min-width: 7.5rem;
        /* 🔥 verhindert Buchstaben-Stapel */
        flex: 0 0 7.5rem;
        white-space: normal;
    }
}

.news-section {
    padding: 5rem 1.5rem;
    background: var(--bg-page);
}

.news-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.news-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    color: var(--text-main);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--bg-surface);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    border-left: 4px solid var(--color-primary);
    text-transform: none;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.news-date {
    font-size: 0.85rem;
    color: var(--color-secondary);
}

.news-card h3 {
    margin: 0.8rem 0;
    color: var(--text-heading);
    text-transform: uppercase;
}

.news-card strong {
    text-transform: none;
    font-weight: normal;
}

.news-card a {
    display: inline-block;
    margin-top: 1rem;
    font-weight: normal;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease, font-weight 0.2s ease;
}

.news-card a:hover {
    font-weight: bold;
    color: var(--color-accent);
}

.news-card.important {
    border-left: 4px solid var(--color-accent);
}

.news-button {
    text-align: center;
    margin-top: 3rem;
}

.news-page {
    background: var(--bg-page);
}

/* Hero */

.news-hero {
    padding: 4rem 1.5rem 2rem 1.5rem;
    text-align: center;
}

.news-hero h1 {
    margin-bottom: 0.6rem;
}

.news-hero-intro {
    max-width: 650px;
    margin: 0 auto;
    color: var(--color-text);
}

/* Archiv */

.news-archive {
    padding: 3rem 1.5rem 5rem 1.5rem;
}

.news-archive-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.news-archive-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.news-archive-date {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
    margin-bottom: 0.6rem;
}

.news-archive-item h2 {
    margin-bottom: 0.8rem;
}

.news-archive-item p {
    line-height: 1.6;
}

.hero-popup {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hero-popup.hidden {
    display: none;
}

.hero-popup-box {
    background: var(--color-bg-light);
    padding: 2rem;
    max-width: 500px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero-popup-box h2 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.hero-popup-box button {
    margin-top: 1rem;
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: var(--radius);
}

.closures-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.closure-item {
    padding: 1rem;
    background: var(--color-bg-light);
    border-radius: var(--radius);
}

.closure-date {
    font-weight: 600;
    color: var(--color-primary);
}

.closure-title {
    font-weight: 600;
    margin-top: 0.2rem;
}

.next-closures {
    padding: 3rem;
    padding-top: 1rem;
    background-color: var(--color-primary);
    display: flex;
    align-items: flex-start;
}

.next-closures .container h2 {
    align-items: flex-start;
    color: white;
}




.faq-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg-light);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.faq-section p {
    margin: 0 auto;
    margin-bottom: 4rem;
    font-style: italic;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--color-white);
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: var(--color-text);
}

.faq-question span {
    color: var(--color-accent);
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition:
        max-height 0.45s ease,
        padding 0.35s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;

    margin: 0;

    font-style: normal;
    text-align: left;

    color: var(--color-text);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}




/* ===============================
   FOOTER
================================ */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
    margin-top: auto;
    font-family: "Montserrat", sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

/* ===============================
   SPALTEN
================================ */
.footer-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-column h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-white);
}

.footer-column p {
    margin: 0;
    line-height: 1.7;
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===============================
   LOGO
================================ */
.footer-brand {
    padding-top: 0.4rem;
}

.footer-logo {
    width: 240px;
    margin-bottom: 1.5rem;
    display: block;
}

/* ===============================
   ÄRZTE
================================ */
.footer-doctors {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
    margin-bottom: 2rem;
}

.footer-doctors strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    color: var(--color-white);
}

/* ===============================
   SOCIALS
================================ */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.footer-socials img {
    height: 32px;
    width: auto;
    opacity: 0.9;
    transition: 0.25s ease;
}

.footer-socials a:last-child img {
    height: 38px;
}

.footer-socials a:hover img {
    opacity: 1;
    transform: translateY(-2px);
}

/* ===============================
   KONTAKT
================================ */
.footer-contact {
    margin-top: 3.5rem;
}

/* ===============================
   SPRECHZEITEN
================================ */
.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0.5rem;
}

.footer-hours div {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: start;

    gap: 1.5rem;
    padding: 0.9rem 0;
}

.footer-hours div:last-child {
    border-bottom: none;
}

.footer-hours span:first-child {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
    color: var(--color-white);
}

.footer-hours span:last-child {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
}

.footer-hours-note {
    margin-top: 1rem !important;
    font-size: 0.82rem !important;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72) !important;
    word-break: normal;
}

/* ===============================
   BOTTOM
================================ */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.4rem 2rem;

    display: flex;
    justify-content: space-between;
    align-items: center;

    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: opacity 0.25s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1000px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.8rem;
        padding: 3rem 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-hours div {
        flex-direction: column;
        gap: 0.2rem;
    }

    .footer-logo {
        width: 220px;
    }
}

/* ===============================
   DROPDOWN CARDS
================================ */
.dropdown-card {
    background: var(--color-white);
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-soft);

    overflow: hidden;
    align-self: start;
}

.dropdown-card summary {
    list-style: none;
    cursor: pointer;

    padding: 1.3rem 1.5rem;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);

    transition: background 0.2s ease;
}

.dropdown-card summary::-webkit-details-marker {
    display: none;
}

.dropdown-card summary::after {
    content: "+";

    font-size: 1.7rem;
    font-weight: 400;

    color: var(--color-accent);

    transition:
        transform 0.3s ease,
        opacity 0.2s ease;
}

.dropdown-card.active summary::after {
    transform: rotate(45deg);
}

.dropdown-content {
    height: 0;
    overflow: hidden;

    transition: height 0.35s ease;
}

.dropdown-card ul {
    margin: 0;

    padding:
        0 1.5rem 1.5rem 2.4rem;

    display: grid;
    gap: 0.7rem;
}

.dropdown-card li {
    color: var(--color-text);
    line-height: 1.5;
}



/* ===============================
   RESPONSIVE – MOBILE NAV FULLSCREEN MIT ANIMATION
================================= */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .nav-toggle {
        display: block;
        position: relative;
        z-index: 3001;
    }

    .nav-menu {
        position: fixed !important;

        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;

        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 100vw !important;
        height: calc(100vh - 70px) !important;

        margin: 0 !important;
        padding: 0 !important;

        background: rgba(255, 255, 255, 0.96);

        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        gap: 2rem;

        box-shadow: none !important;
        border: none !important;

        z-index: 3000;
        box-sizing: border-box;

        /* Animation Ausgangszustand */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-16px) !important;

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            visibility 0.3s ease;
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) !important;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        text-align: center;

        padding: 0.45rem 0;

        font-size: 1.1rem;
        letter-spacing: 0.04em;
        color: var(--color-primary);

        opacity: 0;
        transform: translateY(8px);
        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            color 0.2s ease;
    }

    .nav-menu.open a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.open a:nth-child(1) {
        transition-delay: 0.05s;
    }

    .nav-menu.open a:nth-child(2) {
        transition-delay: 0.1s;
    }

    .nav-menu.open a:nth-child(3) {
        transition-delay: 0.15s;
    }

    .nav-menu.open a:nth-child(4) {
        transition-delay: 0.2s;
    }

    .nav-menu.open a:nth-child(5) {
        transition-delay: 0.25s;
    }

    .nav-menu a:hover {
        color: var(--color-accent);
    }

    .hero-text {
        margin: 1.5rem;
    }

    .hero-text h1 {
        font-size: clamp(1.6rem, 3vw, 2rem);
    }

    .nav-menu a {
        display: inline-block;
        width: auto;
        text-align: center;

        padding: 0.45rem 0;

        font-size: 1.1rem;
        letter-spacing: 0.04em;
        color: var(--color-primary);
        text-decoration: none;

        position: relative;

        opacity: 0;
        transform: translateY(8px);
        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            color 0.2s ease;
    }

    .nav-menu a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0.2rem;

        width: 100%;
        height: 1px;

        background: var(--color-secondary);

        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.25s ease;
    }

    .nav-menu a:hover {
        color: var(--color-secondary);
    }

    .nav-menu a:hover::after {
        transform: scaleX(1);
    }

}

@media (max-width: 600px) {

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links a {
        margin: 0 auto;
        text-align: center;
        align-items: center;
    }

}