        :root {
            --sparfuchs-green: #2ecc71;
            --sparfuchs-dark: #27ae60;
            --gradient-sparfuchs: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
            --bg-dark: #0a0f1a;
            --bg-card: #111827;
            --bg-input: #1a2235;
            --text-primary: #ffffff;
            --text-secondary: #94a3b8;
            --border: rgba(255,255,255,0.1);
        }
        
        /* Theme: Ocean Blue */
        body.theme-ocean {
            --sparfuchs-green: #3498db;
            --sparfuchs-dark: #2980b9;
            --gradient-sparfuchs: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
        }
        /* Theme: Royal Purple */
        body.theme-purple {
            --sparfuchs-green: #9b59b6;
            --sparfuchs-dark: #8e44ad;
            --gradient-sparfuchs: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
        }
        /* Theme: Sunset Orange */
        body.theme-orange {
            --sparfuchs-green: #e67e22;
            --sparfuchs-dark: #d35400;
            --gradient-sparfuchs: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
        }
        
        /* Header / Navigation */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 15, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            padding: 1rem 2rem;
        }
        
        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-primary);
            text-decoration: none;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
        }
        
        .logo span {
            color: var(--sparfuchs-green);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        .nav-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--sparfuchs-green);
        }
        
        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-primary {
            background: var(--gradient-sparfuchs);
            color: white;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
        }
        
        .btn-secondary {
            background: transparent;
            border: 2px solid var(--sparfuchs-green);
            color: var(--sparfuchs-green);
        }
        
        .btn-secondary:hover {
            background: var(--sparfuchs-green);
            color: white;
        }
        
        .btn-large {
            padding: 1rem 2rem;
            font-size: 1.1rem;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 2rem 4rem;
            background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1525 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(46, 204, 113, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }
        
        .hero-text h1 span {
            color: var(--sparfuchs-green);
        }
        
        .hero-text .subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
            justify-content: center;
        }
        
        .hero-badge {
            background: rgba(46, 204, 113, 0.1);
            border: 1px solid rgba(46, 204, 113, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .hero-badge-icon {
            color: var(--sparfuchs-green);
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        /* Trust Section */
        .trust-section {
            padding: 4rem 2rem;
            background: var(--bg-card);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        
        .trust-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 3rem;
        }
        
        .trust-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .trust-icon {
            width: 50px;
            height: 50px;
            background: rgba(46, 204, 113, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        .trust-text {
            font-weight: 600;
        }
        
        .trust-subtext {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }
        
        /* Section Styles */
        section {
            padding: 6rem 2rem;
        }
        
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .section-header h2 span {
            color: var(--sparfuchs-green);
        }
        
        .section-header p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* Which Certificate Section */
        .certificate-comparison {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .comparison-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 2.5rem;
            border: 2px solid var(--border);
            position: relative;
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            cursor: pointer;
            transition: all 0.4s;
        }
        
        .comparison-card:hover {
            border-color: var(--sparfuchs-green);
            transform: translateY(-4px);
            box-shadow: 0 20px 60px rgba(46, 204, 113, 0.15);
        }
        
        .comparison-card.recommended {
            border-color: var(--sparfuchs-green);
        }
        
        .comparison-card.recommended::before {
            content: 'Beliebt';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-sparfuchs);
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .comparison-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .comparison-icon .comparison-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
        }
        
        .comparison-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }
        
        .comparison-price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--sparfuchs-green);
            margin-bottom: 1rem;
        }
        
        .comparison-price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-secondary);
        }
        
        .comparison-features {
            list-style: none;
            margin-bottom: 0;
            width: 100%;
        }
        
        .comparison-features li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .comparison-features li:last-child {
            border-bottom: none;
        }
        
        .feature-icon {
            color: var(--sparfuchs-green);
            font-size: 1.2rem;
        }
        
        /* Decision Table */
        .decision-section {
            background: var(--bg-card);
        }
        
        .decision-table {
            background: var(--bg-input);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--border);
        }
        
        .decision-table table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .decision-table th,
        .decision-table td {
            padding: 1.25rem;
            text-align: center;
            border-bottom: 1px solid var(--border);
        }
        
        .decision-table th {
            background: rgba(46, 204, 113, 0.1);
            font-weight: 600;
        }
        
        .decision-table th:first-child,
        .decision-table td:first-child {
            text-align: left;
            font-weight: 600;
        }
        
        .decision-table tr:last-child td {
            border-bottom: none;
        }
        
        .badge-bedarf {
            background: rgba(231, 76, 60, 0.1);
            color: #e74c3c;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .badge-choice {
            background: rgba(46, 204, 113, 0.1);
            color: var(--sparfuchs-green);
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        /* Process Section */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .process-step {
            text-align: center;
            padding: 2rem;
            position: relative;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient-sparfuchs);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 800;
            margin: 0 auto 1.5rem;
        }
        
        .process-step h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }
        
        .process-step p {
            color: var(--text-secondary);
        }
        
        /* FAQ Section */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 15px;
            margin-bottom: 1rem;
            overflow: hidden;
        }
        
        .faq-question {
            width: 100%;
            padding: 1.5rem;
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-size: 1.1rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }
        
        .faq-question:hover {
            background: rgba(46, 204, 113, 0.05);
        }
        
        .faq-icon {
            font-size: 1.5rem;
            color: var(--sparfuchs-green);
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        
        .faq-answer-content {
            padding: 0 1.5rem 1.5rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--gradient-sparfuchs);
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-section .btn {
            background: white;
            color: var(--sparfuchs-dark);
        }
        
        .cta-section .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        /* Footer */
        .footer {
            background: var(--bg-card);
            padding: 1rem 2rem;
            border-top: 1px solid var(--border);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
        }
        
        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }
        
        .footer-link:hover {
            color: var(--sparfuchs-green);
        }
        
        .footer-divider {
            color: var(--text-secondary);
        }
        
        /* Responsive */
        @media (max-width: 968px) {
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 600px) {
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .trust-content {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-large {
                width: 100%;
                justify-content: center;
            }
        }

/* Cookie Consent Banner */
.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    backdrop-filter: blur(5px);
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 2px solid var(--sparfuchs-green);
    padding: 1.5rem 2rem;
    z-index: 9999;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-consent-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cookie-consent-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.cookie-consent-header .cookie-icon {
    font-size: 1.5rem;
}

.cookie-consent-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.cookie-consent-text a {
    color: var(--sparfuchs-green);
    text-decoration: underline;
}

.cookie-consent-options {
    background: var(--bg-input);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--sparfuchs-green);
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.cookie-option-content {
    flex: 1;
}

.cookie-option-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-option-title .badge {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    background: var(--sparfuchs-green);
    color: white;
    border-radius: 20px;
    font-weight: 500;
}

.cookie-option-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-consent-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.cookie-consent-buttons .btn {
    min-width: 140px;
    justify-content: center;
}

.btn-cookie-settings {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-secondary);
}

.btn-cookie-settings:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.btn-cookie-reject {
    background: transparent;
    border: 2px solid var(--danger);
    color: var(--danger);
}

.btn-cookie-reject:hover {
    background: var(--danger);
    color: white;
}

.btn-cookie-accept {
    background: var(--gradient-sparfuchs);
    color: white;
    border: none;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.3);
}

.cookie-settings-expanded {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.cookie-settings-expanded.active {
    display: block;
}

.cookie-settings-link {
    cursor: pointer;
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1.25rem 1rem;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
    .cookie-consent-buttons .btn {
        width: 100%;
    }
}
