/* ======================================= */
/* 1. GRUNDEINSTELLUNGEN & VARIABLEN */
/* ======================================= */
:root {
    --color-green-main: #8faf8f;    /* Hauptakzent: Sanftes Grün */
    --color-yellow-accent: #fac430;  /* Sekundärakzent: Warmes Gelb */
    --color-arrow-accent: #FFAE78;   /* Pfeilfarbe */
    --color-text-dark: #333;
    --color-text-light: #fff;
    --color-bg-light: #f7fdf7;      /* Sehr helles Grün für Hero-Hintergrund */
    --color-bg-white: #ffffff;
    
    --font-headline: 'Life Savers', cursive;
    --font-body: 'Open Sans', sans-serif; 
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-bg-white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    /* Der .container selbst muss relativ sein, damit die absolute Positionierung des Indikators funktioniert */
    position: relative; 
    display: flex;
    flex-wrap: wrap
}

h1, h2, h3, h4 {
    font-family: var(--font-headline);
    line-height: 1.2;
    margin-bottom: 0.5em;
    font-weight: 700;
}

h3 {
    font-size: 1.8em;
}


/* life-savers-regular - latin */
/* life-savers-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Life Savers';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/life-savers-v23-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/life-savers-v23-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* life-savers-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Life Savers';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/life-savers-v23-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/life-savers-v23-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* life-savers-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Life Savers';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/life-savers-v23-latin-800.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/life-savers-v23-latin-800.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}


/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/open-sans-v44-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/open-sans-v44-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}





/* ======================================= */
/* 2. HEADER & NAVIGATION */
/* ======================================= */
header {
    background-color: var(--color-bg-white);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Diese Klasse wird per JavaScript hinzugefügt, wenn man scrollt */
header.scrolled {
    background-color: rgba(255, 255, 255, 0.9); /* 90% Deckkraft */
    backdrop-filter: blur(5px); /* Erzeugt einen schicken Milchglas-Effekt */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--color-green-main);
    display: flex; /* Oder block, je nach Layout */
    align-items: center;
    /* Optional: Höhe und Breite des Logo-Bereichs definieren */
    height: 75px; 
    width: 200px;
}

/* Stil für das SVG-Bild */
.logo img {
    height: auto; /* Passt die Höhe des Bildes an den h1-Container an */
    width: auto;
    max-width: 100%;
    /* Optional: Platz zwischen Logo und Text (falls Text sichtbar bleiben soll) */
    /* margin-right: 10px; */
}

/* Den Text visuell ausblenden (wichtig für SEO und Barrierefreiheit!) */
.logo {
    /* Diese Technik blendet den Text aus, ohne ihn für Screenreader zu entfernen */
    font-size: 0; 
    line-height: 0;
}

/* Den Text wieder auf die übliche Größe zurücksetzen */
.logo img {
    font-size: initial; /* Oder eine spezifische Größe, falls Sie den Text als Fallback nutzen */
}


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

nav ul li a {
    text-decoration: none;
    color: var(--color-text-dark);
    padding: 0.5rem 1rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--color-green-main);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}








/* ======================================= */
/* 3. HERO-SEKTION (GRID OPTIMIERT) */
/* ======================================= */
.hero {
    background-color: var(--color-bg-light); 
    /* Padding oben deutlich reduziert, unten beibehalten */
    padding: 4rem 0 6rem 0; 
    min-height: 70vh; /* Etwas weniger Mindesthöhe */
    display: flex;
    align-items: flex-start; /* Sektionsinhalt startet weiter oben */
    position: relative;
    overflow: hidden;
}

/* Das Hintergrund-Muster bleibt wie es war */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 150%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23eaf5e9' fill-opacity='1' d='M0,224L60,208C120,192,240,160,360,165.3C480,171,600,213,720,208C840,203,960,150,1080,149.3C1200,149,1320,203,1380,229.3L1440,256L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    opacity: 0.8;
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
    /* Richtet Text und Grafik an der Oberkante aus */
    align-items: start; 
    position: relative;
    z-index: 2;
    /* Schiebt den gesamten Container etwas nach oben */
    margin-top: 2rem; 
}

.hero-main {
    text-align: left;
    /* Schiebt den Textinhalt etwas von der linken Kante weg */
    padding-left: 5%; 
}

.headline {
    color: var(--color-green-main);
    font-size: 3.5em;
    /* Margin oben auf 0, damit sie exakt oben mit dem Badge startet */
    margin: 0 0 0.7em 0;
    text-align: left;
}

.slogan {
    font-family: var(--font-headline);
    font-size: 1.3em;
    color: var(--color-green-main);
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.hero-intro-text {
    max-width: 100%;
    margin-bottom: 2.5rem;
    font-size: 1.1em;
}

/* Das visuelle Paket rechts */
.hero-visual {
    display: flex;
    justify-content: flex-end;
    /* Sorgt dafür, dass das Badge ganz oben startet */
    margin-top: 0.5rem; 
}

.founding-arrow-container {
    position: absolute;
    /* Wert verringert, um den Pfeil höher zu setzen */
    top: 1.5rem;   
    left: -7rem;   
    width: 9rem;   
    z-index: -1;
}

.founding-wrapper {
    position: relative;
    display: inline-block;
}

/* Der Badge-Stil */
.founding-indicator {
    background-color: var(--color-yellow-accent);
    padding: 12px 25px;
    border-radius: 50px;
    transform: rotate(6deg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: var(--font-headline);
    font-weight: 800;
}

.arrow-svg {
    width: 100%;
    height: auto;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr; /* Eine Spalte */
        text-align: center;
    }
    .hero-main {
        text-align: center;
        order: 2;
    }
    .headline {
        text-align: center;
        font-size: 2.5em;
    }
    .hero-visual {
        order: 1;
        justify-content: center;
        margin-bottom: 3rem;
    }
    .founding-arrow-container {
        display: none; /* Pfeil am Handy ausblenden */
    }
}





/* ======================================= */
/* 4. GRÜNDUNGS-INDIKATOR (Pfeil & Text) */
/* ======================================= */


/* Der Container für Badge + Pfeil */
.founding-wrapper {
    position: relative;
    display: inline-block;
}

/* Das Badge selbst */
.founding-indicator {
    background-color: var(--color-yellow-accent);
    padding: 10px 22px;
    border-radius: 50px;
    transform: rotate(5deg);
    position: relative;
    z-index: 2; /* Liegt über dem Pfeil */
}

/* Der Container für den Pfeil */
.founding-arrow-container {
    position: absolute;
    /* Positionierung relativ zum Badge */
    top: 40px;      /* Verschiebt den Pfeil nach unten Richtung Titel */
    left: -80px;    /* Schiebt den Pfeil nach links Richtung Titel */
    width: 120px;   /* Breite des Pfeils anpassen */
    z-index: 1;     /* Liegt hinter dem Badge */
    pointer-events: none; /* Man kann durch den Pfeil hindurchklicken */
}

.arrow-svg {
    width: 100%;
    height: auto;
    /* Falls der Pfeil in die falsche Richtung zeigt, kannst du ihn hier spiegeln: */
    /* transform: scaleX(-1); */
}

/* Responsivität: Pfeil auf dem Handy meistens ausblenden oder anpassen */
@media (max-width: 768px) {
    .founding-arrow-container {
        display: none; /* Auf kleinen Schirmen wirkt es oft zu unruhig */
    }
}









/* ======================================= */
/* 5. BUTTONS (CTAs) */
/* ======================================= */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    border: 2px solid transparent;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--color-green-main);
    color: var(--color-text-light);
    border-color: var(--color-green-main);
}

.btn-primary:hover {
    background-color: #7a9c7a;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-green-main);
    border-color: var(--color-green-main);
}

.btn-secondary:hover {
    background-color: var(--color-green-main);
    color: var(--color-text-light);
}

.btn-support {
    background-color: var(--color-yellow-accent);
    color: var(--color-text-dark);
    border-color: var(--color-yellow-accent);
    font-size: 1.1em;
    padding: 1rem 3rem;
    margin-top: 1rem;
}

.btn-support:hover {
    background-color: #e6b22c;
}











/* ======================================= */
/* 6. ALLGEMEINE SEKTIONEN */
/* ======================================= */
.section-padded {
    padding: 4rem 0;
    text-align: center;
    scroll-margin-top: 100px; /* Für Anker-Links, um den Header zu berücksichtigen */
}

.section-title {
    margin-bottom: 1.5rem;
    color: var(--color-green-main);
}

.section-padded .headline{
    text-align: center;
    font-size: 2.5em;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1em;
}

/* Feature Grid */
.feature-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 3rem;
    text-align: left;
}

.feature-item {
    flex: 1;
    padding: 1.5rem;
    background-color: var(--color-bg-white);
    border-left: 5px solid var(--color-green-main);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
}

.feature-item .icon {
    font-size: 2em;
    display: block;
    margin-bottom: 0.5rem;
}

/* Therapie-Punkte */
.therapy-points {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 2rem;
    text-align: left;
}

.point-item {
    flex: 1;
    padding: 1.5rem;
    border-radius: 5px;
    background-color: var(--color-bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.point-item h4 {
    color: var(--color-green-main);
    font-family: var(--font-headline);
}

.point-item ul {
    list-style-type: '\1F43E'; /* Pfoten-Emoji als Aufzählungszeichen */
    padding-left: 2rem;
    margin-top: 0.5rem;
}

.point-item li {
    padding-left: 1em; /* Abstand zu Pfoten-Emoji als Aufzählungszeichen ohne padding zu klein */
}


/* Akzent-Sektion (z.B. Therapie) */
.section-accent-bg {
    background-color: #eaf5e9; /* Helleres Grün */
    text-align: center;
}

/* Gründerin/Auszeichnung Sektion */
.section-founder .container {
    display: flex;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.reverse-layout {
    flex-direction: row-reverse; /* Bild rechts, Text links */
}

.content-left, .image-right {
    flex: 1;
}

.placeholder-image {
    background-color: #e0e0e0;
    min-height: 350px;
    border-radius: 10px;
    /* Geschwungener Rahmen im Akzent-Gelb */
    border: 5px solid var(--color-yellow-accent);
}

.placeholder-founder {
    /* Stil für das Bild der Gründerin */
    background-color: #f7f3e4; 
    border-color: var(--color-yellow-accent);
}

.award-box {
    background-color: var(--color-yellow-accent);
    color: var(--color-text-dark);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.award-box h4 {
    color: var(--color-text-dark);
    margin-top: 0;
    font-family: var(--font-headline);
    font-weight: 700;
}

.icon-award {
    font-size: 2em;
    display: block;
    margin-bottom: 0.5rem;
}

/* Spenden-Box */
.support-box {
    background-color: var(--color-bg-white);
    border: 1px dashed var(--color-green-main);
    padding: 2rem;
    max-width: 500px;
    margin: 3rem auto 0;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.support-box h4 {
    color: var(--color-green-main);
    margin-bottom: 1rem;
}



/* Spezielle Formatierung für Rechtstexte (Impressum & Datenschutz) */
.legal-content {
    text-align: left; /* Text linksbündig */
    max-width: 800px; /* Begrenzt die Zeilenlänge für bessere Lesbarkeit */
    margin: 0 auto;  /* Zentriert den gesamten Block auf der Seite */
}

.legal-content h3 {
    margin-top: 2.5rem;   /* Viel Abstand nach oben zur vorherigen Sektion */
    margin-bottom: 1rem;  /* Deutlicher Abstand zum folgenden Text */
    color: var(--color-green-main);
}

.legal-content p {
    margin-bottom: 1.2rem; /* Abstand zwischen den Absätzen */
    line-height: 1.6;      /* Angenehmer Zeilenabstand */
}

.legal-content strong {
    display: inline-block;
    margin-top: 0.5rem;
}

.print-button {
    background-color: transparent;
    border: 1px solid var(--color-green-main);
    color: var(--color-green-main);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.print-button:hover {
    background-color: var(--color-green-main);
    color: white;
}




/* ======================================= */
/* 7. FOOTER */
/* ======================================= */

footer {
    background-color: var(--color-green-main);
    color: var(--color-text-light);
    padding: 3rem 0 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

footer .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col .logo {
    color: var(--color-yellow-accent);
}

footer ul {
    list-style: none;
}

footer ul li a {
    color: var(--color-text-light);
    text-decoration: none;
    opacity: 0.8;
    line-height: 2;
}

.footer-links a {
    text-decoration: none;
    color: var(--color-text-white);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-yellow-accent);
}



.social-icons a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: var(--color-yellow-accent);
    color: var(--color-text-dark);
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
}

.copyright {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8em;
    opacity: 0.7;
}

/* ======================================= */
/* 8. RESPONSIVE DESIGN */
/* ======================================= */
@media (max-width: 992px) {
    /* Anpassung für größere Tablets/kleine Desktops */
    .hero-content {
        max-width: 600px;
    }
    
    .founding-indicator {
        right: 20px; /* Anpassung der Position für kleinere Bildschirme */
    }
}

@media (max-width: 768px) {
    /* Mobile Anpassungen */

    /* Spezielle Korrektur für den Header-Container im mobilen Modus */
    header .container {
        flex-direction: row; /* Logo und Burger-Button nebeneinander lassen */
        justify-content: space-between;
        align-items: center;
    }

    /* Navigation */
    nav {
        /* Statt display: none nutzen wir Transparenz für die Animation */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px); /* Leichtes Verschieben nach oben */
        transition: all 0.3s ease-in-out; /* Die Magie: 0.3 Sekunden Animation */

        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    /* Zustand wenn das Menü offen ist */
    nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0); /* Fährt sanft an die richtige Position */
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #eee;
        color: var(--color-text-dark);
    }

    .nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--color-green-main);
        cursor: pointer;
    }


    /* Hero-Sektion */
    .hero {
        padding: 4rem 0;
        min-height: auto;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .headline {
        font-size: 2.2em;
    }

    .slogan {
        text-align: center;
    }

    .cta-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-group a {
        margin: 0;
        width: 80%;
    }

    /* Gründungs-Indikator */
    .founding-indicator {
        position: static;
        margin-top: 1rem;
        flex-direction: row; 
        justify-content: center;
        align-items: center;
        width: 100%;
        right: auto;
        top: auto;
    }
    
    .founding-text {
        font-size: 1.1em;
        margin-right: 10px;
        margin-bottom: 0;
        padding: 0.3em 0.8em;
    }
    
    .founding-arrow {
        width: 40px;
        height: 30px;
        transform: rotate(0deg) scaleX(-1);
        margin-top: 0;
    }
    
    /* Allgemeine Sektionen */
    .feature-grid, .therapy-points {
        flex-direction: column;
    }

    .section-founder .container {
        flex-direction: column;
        text-align: center;
    }

    .reverse-layout {
        flex-direction: column;
    }
    
    .footer-col {
        margin-bottom: 20px;
        flex: auto;
        width: 100%;
    }

    .container {
        flex-direction: column; /* Stapelt die Spalten vertikal */
    }
    
    .footer-logo {
        order: -1; 
    }
}


/* ======================================= */
/* 9. TEAM-VORSTELLUNG */
/* ======================================= */

.team-section .container {
    /* Wichtig: Entfernt die globale Flex-Anweisung für diesen speziellen Container */
    display: block; 
    
    /* Stellt sicher, dass der gesamte Inhaltsbereich die volle Breite des Containers nutzt */
    width: 100%; 
    
    /* Der Wrapper des Containers soll sich normal verhalten (keine Flex-Eigenschaften) */
    flex-wrap: initial; 
}


.team-section {
    background-color: var(--color-bg-white);
}

.team-member {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
    text-align: left;
}

/* Stil für die Bildblase */
.image-bubble {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--color-green-main); /* Grüner Rahmen */
    flex-shrink: 0;
}

/* Beispiel für Hintergrundbilder, falls Methode 2 verwendet wird */
#sonja-marschall-portraet {
    background-image: url('gfx/SonjaMarschall1_AnneSimon.jpeg'); 
    background-size: cover; 
    background-position: center; 
}

#jana-unterholzner-portraet {
    background-image: url('gfx/JanaUnterholzner.jpeg'); 
    background-size: cover; 
    background-position: center; 
}

#felix-krause-portraet {
    background-image: url('gfx/FelixKrause.png'); 
    background-size: cover; 
    background-position: center; 
}

#leo-portraet {
    background-image: url('gfx/Leo-Portraet.png');
    background-size: cover; 
    background-position: center; 
}

/* Platzhalter für das Gesicht/Bild (falls mit <img> ersetzt wird, kann dieser Stil entfernt werden) */
.placeholder-face {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0; 
}

/* Stil für die Infobox */
.info-box {
    flex-grow: 1;
    padding: 30px;
    background-color: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.info-box h4 {
    color: var(--color-yellow-accent); /* Name in Gelb */
    font-size: 1.6em;
    margin-bottom: 0.3em;
}

.info-box .role {
    font-weight: bold;
    color: var(--color-green-main);
    margin-bottom: 1em;
}

/* ANORDNUNG WECHSELN: Bild rechts */
.team-member.align-right {
    flex-direction: row-reverse; /* Vertauscht die Reihenfolge */
}

/* Kleiner visueller Akzent, wenn die Box links liegt */
.team-member.align-right .info-box {
    border-left: none;
    border-right: 5px solid var(--color-green-main);
}

/* Kleiner visueller Akzent, wenn die Box rechts liegt */
.team-member.align-left .info-box {
    border-right: none;
    border-left: 5px solid var(--color-green-main);
}


/* ======================================= */
/* MOBILE ANPASSUNG TEAM-SEKTION */
/* ======================================= */
@media (max-width: 768px) {
    .team-member {
        flex-direction: column; /* Stapelt Bild und Text */
        gap: 20px;
        text-align: center;
    }
    
    .team-member.align-right {
        flex-direction: column; /* Auch rechtsbündige Elemente bleiben gestapelt */
    }

    .image-bubble {
        width: 150px; /* Kleinere Blase für Mobile */
        height: 150px;
        order: -1; /* Setzt das Bild über den Text */
        margin-bottom: 10px;
    }

    .info-box {
        padding: 20px;
    }
    
    /* Rahmenanpassung für gestapelte Elemente */
    .team-member .info-box {
        border-left: 5px solid var(--color-green-main);
        border-right: none;
    }
}




@media print {
    /* Alles ausblenden, was man auf Papier nicht braucht */
    header, footer, .print-button, .nav-toggle {
        display: none !important;
    }

    /* Den Text auf die volle Breite bringen */
    .legal-content {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    body {
        background-color: white;
        color: black;
        font-size: 12pt; /* Optimale Größe für Druck */
    }
}