    /* --- 1. BASIC SETUP (Trust & Clarity Mode) --- */
    .datenschutz-wrapper {
        margin: 0;
        padding: 0;
        width: 100%;
        min-height: 100vh;
        /* Verlauf: Slate (Seriös) -> Emerald (Sicher) */
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #064e3b 100%);
        color: #f1f5f9;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        overflow-x: hidden;
        position: relative;
        padding-bottom: 6rem;
    }

    /* --- 2. ANIMATED BACKGROUND --- */
    .bg-element {
        position: absolute;
        opacity: 0.08;
        pointer-events: none;
        animation: float 25s ease-in-out infinite;
        z-index: 0;
        color: #fff;
    }
    
    /* Shield */
    .bg-shield { top: 10%; right: 10%; width: 160px; }
    /* Lock */
    .bg-lock { bottom: 15%; left: 5%; width: 120px; animation-delay: 2s; }
    /* Document */
    .bg-doc { top: 40%; left: 20%; width: 100px; animation-delay: 5s; opacity: 0.05; }

    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(2deg); }
    }

    /* --- 3. CONTAINER --- */
    .main-container {
        position: relative;
        z-index: 10;
        max-width: 1000px;
        margin: 0 auto;
        padding: 4rem 1.5rem;
    }

    /* --- 4. HEADER SECTION --- */
    .datenschutz-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .header-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
        display: inline-block;
        filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.3));
    }

    .datenschutz-title {
        font-size: 3rem;
        font-weight: 800;
        margin: 0 0 1rem 0;
        background: linear-gradient(to right, #ffffff, #a7f3d0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1.1;
    }

    .datenschutz-desc {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #cbd5e1;
        max-width: 700px;
        margin: 0 auto 2rem auto;
    }

    /* --- 5. INFO CARDS (Quick Stats) --- */
    .neelix-quick-info {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .neelix-info-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 1.5rem;
        text-align: center;
        transition: transform 0.3s ease;
    }

    .neelix-info-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .neelix-info-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
    .neelix-info-title { font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
    .neelix-info-text { font-size: 0.9rem; color: #94a3b8; line-height: 1.4; }
    .neelix-info-text strong { color: #34d399; }

    /* --- 6. TABBED CONTENT AREA --- */
    .neelix-tab-container {
        background: rgba(30, 41, 59, 0.7);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        padding: 2rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

    /* Navigation */
    .neelix-tab-navigation {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1.5rem;
    }

    .neelix-tab-button {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #cbd5e1;
        padding: 10px 20px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 0.95rem;
        font-weight: 600;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .neelix-tab-button:hover {
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
        border-color: #fff;
    }

    .neelix-tab-button.active {
        background: #10b981; /* Emerald Green */
        border-color: #10b981;
        color: #fff;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    }

    /* Content */
    .neelix-tab-content {
        display: none;
        animation: fadeIn 0.4s ease;
    }
    
    .neelix-tab-content.active { display: block; }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Typography inside Content */
    .neelix-section-title {
        font-size: 1.5rem;
        color: #fff;
        margin-bottom: 1.5rem;
        border-left: 4px solid #10b981;
        padding-left: 15px;
    }

    .neelix-section-content h4 { color: #e2e8f0; margin: 1.5rem 0 0.8rem; font-size: 1.1rem; }
    .neelix-section-content h5 { color: #94a3b8; margin: 1rem 0 0.5rem; font-size: 1rem; }
    .neelix-section-content p, .neelix-section-content li { color: #cbd5e1; line-height: 1.7; margin-bottom: 1rem; font-size: 1rem; }
    .neelix-section-content strong { color: #fff; }
    .neelix-section-content ul { list-style: none; padding: 0; }
    .neelix-section-content ul li { padding-left: 20px; position: relative; }
    .neelix-section-content ul li::before { content: '•'; color: #10b981; position: absolute; left: 0; font-weight: bold; }
    .neelix-section-content a { color: #34d399; text-decoration: none; border-bottom: 1px dotted #34d399; }
    .neelix-section-content a:hover { color: #6ee7b7; border-bottom-style: solid; }

    /* Highlights & Warning Boxes */
    .neelix-highlight-box {
        background: rgba(16, 185, 129, 0.1);
        border: 1px solid rgba(16, 185, 129, 0.3);
        border-radius: 12px;
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .neelix-warning-box {
        background: rgba(245, 158, 11, 0.1);
        border: 1px solid rgba(245, 158, 11, 0.3);
        border-radius: 12px;
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .neelix-highlight-box h5 { color: #34d399; margin-top: 0; }
    .neelix-warning-box h5 { color: #fbbf24; margin-top: 0; }

    /* Contact Box */
    .neelix-contact-box {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
        margin-top: 2rem;
    }

    .nd-note-muted {
        font-size: 0.9rem;
        opacity: 0.7;
        margin-top: 2rem;
    }

    @media (max-width: 768px) {
        .datenschutz-title { font-size: 2.5rem; }
        .neelix-tab-button { width: 100%; justify-content: center; }
        .main-container { padding: 2rem 1rem; }
    }
