    
    /* =========================================================================
                         CSS RESET & BASICS
       ========================================================================== */
    /* CSS RESET & BASIS */
        :root {
            --primary-purple: #6B46C1; /* Kräftiges Lila für Titel und Header */
            --light-purple: #E9D8FD;   /* Sehr helles Lila für Hover-Effekte */
            --bg-purple: #FAF5FF;      /* Zartes Lila für den Hintergrund */
            --text-color: #2D3748;
            --white: #FFFFFF;
            --border-radius: 20px;     /* Stark abgerundete Ecken */
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            scroll-behavior: smooth; /* Sanftes Scrollen für die Navigation */
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--bg-purple);
            padding-top: 70px; /* Platz für die fixierte Navbar */
        }

        h1, h2, h3 {
            color: var(--primary-purple);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        p { margin-bottom: 1rem; }
        
        a { color: var(--primary-purple); text-decoration: none; font-weight: bold; }
        a:hover { text-decoration: underline; }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
        }

/* ==========================================================================
                         NAVIGATION (HAMBURGER-MENÜ)
   ========================================================================== */


    /* 1. Die lila Haupt-Navbar (Gilt für Desktop & Mobil) */
    nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: var(--primary-purple);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 9999;
    }   

    /* Flexbox-Container: Zwingt den Hamburger nach ganz links und das Logo nach ganz rechts */
    .nav-container {
    width: 100%;
    height: 100%;
    max-width: 100%;
    padding: 0 1.5rem; /* Abstand an den äußeren Bildschirmrändern */
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

/* Hamburger-Button (Immer links positioniert) */
.hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
    order: 1; /* Erzwingt Position 1 (ganz links) */
}

.hamburger .bar {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--box-bg, #FFFFFF);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

/* Logo-Container (Immer rechts positioniert) */
.nav-brand-logo {
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 10001;
    order: 2; /* Erzwingt Position 2 (ganz rechts) */
}

.nav-brand-logo img {
    height: auto;
    max-height: 40px; /* Perfekte Höhe innerhalb der 70px Navbar */
    object-fit: contain; /* Verhindert Verzerrungen des breiten Logos */
}

/* Die einklappbare Sidebar (Menü-Liste) */
.nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-purple);
    padding: 100px 1.5rem 2rem 1.5rem;
    gap: 1.2rem;
    
    transform: translateX(-100%); 
    transition: transform 0.3s ease-in-out;
    box-shadow: 4px 0 15px rgba(0,0,0,0.1);
}

.nav-menu.active {
    transform: translateX(0);
}

/* Ovale Buttons in der Sidebar */
.nav-menu li {
    width: 100%;
    text-align: center;
}

.nav-menu li a {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    width: 100%;
    padding: 0.8rem 1.2rem;
    color: var(--box-bg, #FFFFFF) !important;
    background-color: rgba(255, 255, 255, 0.15); 
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.nav-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.02);
}

/* Hamburger-Animation zum "X" */
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* --- 2. DESKTOP SPEZIFISCH (Inhalt verschieben bei offener Sidebar) --- */
@media (min-width: 769px) {
    body {
        padding-top: 100px;
        padding-left: 2rem;
        padding-right: 2rem;
        transition: padding-left 0.3s ease-in-out;
    }

    body.sidebar-open {
        padding-left: 310px; /* Schiebt den Inhalt flüssig nach rechts */
    }

    /* Auf großen Bildschirmen darf das Logo etwas breiter sein */
    .nav-brand-logo img {
        max-width: 250px; 
    }
}


/* --- 3. MOBIL SPEZIFISCH (Echtes Maximum von 25% Breite & Abstand) --- */
@media (max-width: 768px) {
    body {
        padding-top: 100px;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .nav-menu {
        width: 100%; /* Vollbild auf Smartphones */
    }

    /* Der Logo-Container bekommt rechts Raum, beschränkt aber nicht die Bildproportionalität */
    .nav-brand-logo {
        max-width: 60%; /* Erlaubt dem Logo mehr Platz auf der rechten Seite */
        justify-content: flex-end;
    }

    .nav-brand-logo img {
        height: 42px;       /* Setzt eine feste, gut lesbare Höhe auf dem Handy */
        width: auto;        /* Berechnet die Breite automatisch passend zum 2900px-Seitenverhältnis */
        max-width: 100%;    /* Verhindert das Ausbrechen aus dem Container */
        object-fit: contain; 
    }
}
/* ==========================================================================
                         CONTENT BOXES
   ========================================================================== */
        /* WHITE CONTENT BOXES */
        .disclaimer {
            background-color: rgb(255, 185, 228);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
        }
        .disclaimer-item {
            background-color: rgb(240, 63, 172);
            padding: 3rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
        }

        
        
        
        .content-box {
            background-color: var(--white);
            border-radius: var(--border-radius);
            padding: 1rem;
            margin-bottom: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
        }

        .argument-item {
            background-color: var(--bg-purple);
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
        }

        .badge { 
            display: inline-block; 
            padding: 0.3rem 0.8rem; 
            border-radius: 10px; 
            font-size: 0.85rem; 
            font-weight: bold; 
            margin-bottom: 0.5rem; 
            background-color: var(--light-purple);
            color: var(--primary-purple);
        }

        /* ACCORDION FÜR QUELLEN */
        .accordion {
            margin-top: 2rem;
            border: 2px solid var(--light-purple);
            border-radius: 15px;
            overflow: hidden;
        }

        .accordion-btn {
            background-color: var(--white);
            color: var(--primary-purple);
            cursor: pointer;
            padding: 1rem 1.5rem;
            width: 100%;
            text-align: left;
            border: none;
            outline: none;
            font-size: 1.1rem;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }

        .accordion-btn:hover, .accordion-btn.active { 
            background-color: var(--light-purple); 
        }

        .accordion-btn::after {
            content: '\002B';
            font-size: 1.5rem;
        }

        .accordion-btn.active::after { 
            content: '\2212'; 
        }

        .accordion-content {
            padding: 0 1.5rem;
            background-color: var(--white);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .accordion-content ul {
            padding: 1rem 0 1rem 1.5rem;
        }

        /* ==========================================================================
                         FOOTER
            ========================================================================== */
        /* FOOTER */
        footer {
            text-align: center;
            padding: 2rem;
            color: var(--primary-purple);
            margin-top: 2rem;
        }
/* ==========================================================================
                         RESPONSIVE
   ========================================================================== */
        /* RESPONSIVE */
        @media (max-width: 600px) {
            .content-box { padding: 1.5rem; }
            nav ul li { margin: 0.2rem; }
            nav ul li a { font-size: 0.9rem; padding: 0.4rem 0.8rem; }
        }