    /* --- 1. BASIC SETUP (Trust & Clarity Mode - Consistent with Privacy) --- */
    .impressum-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;
    }
    
    /* Scale (Justice) */
    .bg-scale { top: 10%; right: 10%; width: 160px; }
    /* Building */
    .bg-building { bottom: 15%; left: 5%; width: 120px; animation-delay: 2s; }
    /* Heart (Support) */
    .bg-heart { 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 --- */
    .impressum-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));
    }

    .impressum-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;
    }

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

    /* --- 5. 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 & Sections */
    .neelix-section-title {
        font-size: 1.5rem;
        color: #fff;
        margin-bottom: 1.5rem;
        border-left: 4px solid #10b981;
        padding-left: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .neelix-section-content h4 { color: #fff; margin: 1.5rem 0 0.8rem; font-size: 1.2rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 5px; }
    .neelix-section-content h5 { color: #34d399; 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; }
    
    /* Boxes */
    .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: 1.5rem 0;
    }
    .neelix-contact-box h4 { border: none !important; margin-top: 0 !important; font-size: 1.3rem !important; color: #fff !important; }
    .neelix-contact-box a { color: #34d399; text-decoration: none; font-weight: bold; }

    .neelix-highlight-box {
        background: rgba(16, 185, 129, 0.1);
        border-left: 4px solid #10b981;
        padding: 1.5rem;
        border-radius: 8px;
        margin: 1.5rem 0;
    }

    .neelix-warning-box {
        background: rgba(245, 158, 11, 0.1);
        border-left: 4px solid #fbbf24;
        padding: 1.5rem;
        border-radius: 8px;
        margin: 1.5rem 0;
    }
    .neelix-warning-box h5 { color: #fbbf24; margin-top: 0; }

    .neelix-support-box {
        background: rgba(236, 72, 153, 0.1);
        border-left: 4px solid #ec4899;
        padding: 1.5rem;
        border-radius: 8px;
        margin: 1.5rem 0;
    }
    .neelix-support-box h5 { color: #f472b6; margin-top: 0; }

    /* Donation Grid */
    .donation-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .donation-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.5rem;
        border-radius: 16px;
        transition: transform 0.3s, background 0.3s;
    }

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

    .donation-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
    .donation-title { font-weight: 700; color: #fff; margin-bottom: 0.5rem; font-size: 1.2rem; }
    .donation-desc { font-size: 0.9rem; color: #cbd5e1; margin-bottom: 1rem; line-height: 1.4; }
    
    .donation-details {
        background: rgba(0, 0, 0, 0.3);
        padding: 10px;
        border-radius: 8px;
        font-family: 'Courier New', monospace;
        font-size: 0.85rem;
        word-break: break-all;
        border: 1px solid rgba(255,255,255,0.1);
        color: #a7f3d0;
        cursor: pointer;
        position: relative;
    }

    .donation-details:hover {
        background: rgba(0, 0, 0, 0.5);
        border-color: #34d399;
    }

    .donation-details::after {
        content: 'Klicken zum Kopieren';
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        background: #10b981;
        color: #fff;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.7rem;
        font-family: sans-serif;
        opacity: 0;
        transition: opacity 0.2s;
        pointer-events: none;
    }

    .donation-details:hover::after { opacity: 1; }

    .donation-bic-note {
        font-size: 0.8rem;
        margin-top: 5px;
        opacity: 0.7;
    }

    .donation-details-link {
        color: inherit;
        text-decoration: none;
    }

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