        :root {
            --primary: #003366;
            --secondary: #00a8e8;
            --accent: #ff6b35;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --success: #28a745;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-weight: 600;
            line-height: 1.3;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header - Critical */
        header {
            background-color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
            text-decoration: none;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        /* Hero - Critical */
        .hero {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, #004080 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .hero-text {
            flex: 1;
            padding-right: 40px;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero h1 span {
            color: var(--secondary);
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
        }
        
        .cta-button:hover {
            background-color: #ff5500;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
        }
        
        /* Lazy load non-critical images */
        img[data-src] {
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        img.lazyloaded {
            opacity: 1;
        }
    </style>
    
    <!-- Deferred non-critical CSS -->
    <style>
        /* Non-critical CSS mit ursprünglichen Farben */
        .logo-subtitle { font-size: 0.8rem; color: var(--gray); margin-left: 10px; font-weight: 400; }
        .nav-links { display: flex; list-style: none; }
        .nav-links li { margin-left: 30px; }
        .nav-links a { 
            text-decoration: none; 
            color: var(--dark); 
            font-weight: 500; 
            transition: var(--transition);
            position: relative;
        }
        .nav-links a:hover { color: var(--secondary); }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            left: 0;
            bottom: -5px;
            transition: var(--transition);
        }
        .nav-links a:hover::after { width: 100%; }
        
        .mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--primary); cursor: pointer; }
        .hero-subtitle { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; max-width: 600px; }
        .hero-cta { display: flex; gap: 20px; margin: 30px 0; flex-wrap: wrap; }
        .secondary-button { 
            padding: 15px 30px; 
            border: 2px solid white; 
            color: white; 
            border-radius: 50px; 
            text-decoration: none; 
            font-weight: 600;
            transition: var(--transition);
        }
        .secondary-button:hover {
            background: white;
            color: var(--primary);
        }
        .trust-indicators { display: flex; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
        .trust-item { 
            display: flex; 
            align-items: center; 
            gap: 8px;
            background: rgba(255,255,255,0.1);
            padding: 10px 15px;
            border-radius: 50px;
        }
        .profile-img { 
            width: 300px; 
            height: 300px; 
            border-radius: 50%; 
            object-fit: cover; 
            border: 8px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .profile-img-container { position: relative; }
        .experience-badge { 
            position: absolute; 
            bottom: 20px; 
            right: 0; 
            background: var(--accent); 
            color: white; 
            padding: 12px 20px; 
            border-radius: 8px; 
            font-weight: 600; 
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Services Section */
        .services { padding: 100px 0; background-color: white; }
        .section-title { text-align: center; margin-bottom: 60px; }
        .section-title h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }
        .section-title p { color: var(--gray); /* max-width: 700px; */ margin: 0 auto; }
        .services-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 30px; 
            margin: 50px 0; 
        }
        .service-card { 
            background: white; 
            border-radius: 10px; 
            padding: 40px 30px; 
            box-shadow: var(--shadow); 
            transition: var(--transition);
            text-align: center;
            border-top: 4px solid var(--secondary);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        .service-icon { font-size: 3rem; color: var(--secondary); margin-bottom: 20px; }
        .service-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--primary); }
        .service-card p { color: var(--gray); margin-bottom: 20px; }
        .service-features { text-align: left; margin-top: 20px; }
        .service-features li { 
            margin-bottom: 10px; 
            padding-left: 25px; 
            position: relative; 
            list-style: none;
        }
        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }
        
        /* SEO Content Section */
        .seo-content-section { 
            background: var(--light-gray); 
            padding: 40px; 
            border-radius: 10px; 
            margin: 50px 0; 
            border-left: 4px solid var(--secondary);
        }
        .seo-content-section h3 { color: var(--primary); margin-bottom: 20px; }
        .seo-content-section ul { margin: 20px 0; padding-left: 20px; }
        .seo-content-section li { margin-bottom: 10px; }
        
        /* Conversion CTA */
        .conversion-cta { 
            text-align: center; 
            margin: 30px 0; 
            padding: 30px; 
            background: linear-gradient(135deg, var(--secondary) 0%, #0088cc 100%); 
            color: white; 
            border-radius: 10px; 
            box-shadow: var(--shadow);
        }
        .conversion-cta h3 { font-size: 1.8rem; margin-bottom: 15px; }
        .conversion-cta p { margin-bottom: 20px; opacity: 0.9; }
        .cta-note { margin-top: 15px; }
        
        /* Experience Section */
        .experience { padding: 80px 0; background: var(--light-gray); }
        .timeline { max-width: 800px; margin: 0 auto; }
        .timeline-item { 
            display: flex; 
            margin-bottom: 40px; 
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .timeline-year { 
            flex: 0 0 150px; 
            font-weight: 600; 
            color: var(--primary);
            font-size: 1.1rem;
        }
        .timeline-content { flex: 1; }
        .timeline-content h3 { color: var(--primary); margin-bottom: 10px; }
        .timeline-content ul { padding-left: 20px; margin-top: 10px; }
        
        /* Testimonials */
        .testimonials { padding: 100px 0; background-color: var(--light-gray); }
        .testimonial-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 30px; 
            margin: 50px 0; 
        }
        .testimonial-card { 
            background: white; 
            border-radius: 10px; 
            padding: 30px; 
            box-shadow: var(--shadow); 
        }
        .testimonial-text { 
            font-style: italic; 
            margin-bottom: 20px; 
            position: relative; 
            padding-left: 20px; 
            border-left: 3px solid var(--secondary); 
        }
        .testimonial-author { display: flex; align-items: center; }
        .testimonial-author img { 
            width: 50px; 
            height: 50px; 
            border-radius: 50%; 
            object-fit: cover; 
            margin-right: 15px; 
        }
        .rating { color: gold; margin-bottom: 10px; }
        
        /* FAQ Section */
        .faq-section { 
            background: white; 
            padding: 40px; 
            border-radius: 10px; 
            margin: 50px 0; 
            box-shadow: var(--shadow);
        }
        .faq-section h3 { color: var(--primary); margin-bottom: 25px; }
        .faq-item { margin-bottom: 25px; border-bottom: 1px solid var(--light-gray); padding-bottom: 20px; }
        .faq-item h4 { color: var(--dark); margin-bottom: 10px; cursor: pointer; }
        .faq-item p { color: var(--gray); }
        
        /* Videos Section */
        .videos { padding: 100px 0; background-color: white; }
        .video-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); 
            gap: 30px; 
            margin: 50px 0; 
        }
        .video-card { 
            background: var(--light); 
            border-radius: 10px; 
            overflow: hidden; 
            box-shadow: var(--shadow); 
        }
        .video-container { position: relative; }
        .video-player { 
            width: 100%; 
            height: 250px; 
            background: linear-gradient(45deg, var(--primary), var(--secondary)); 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            justify-content: center; 
            color: white; 
            position: relative;
            overflow: hidden;
        }
        .video-player i { font-size: 3rem; margin-bottom: 0px; margin-left: 10px; opacity: 0.9; }
        .video-player::after { 
            content: ''; 
            position: absolute; 
            width: 100%; 
            height: 100%; 
            background: rgba(0, 0, 0, 0.3); 
            top: 0; 
            left: 0; 
        }
        .play-button { 
            position: absolute; 
            top: 50%; 
            left: 50%; 
            transform: translate(-50%, -50%); 
            background: var(--accent); 
            color: white; 
            width: 70px; 
            height: 70px; 
            border-radius: 50%; 
            border: none; 
            font-size: 1.5rem; 
            cursor: pointer; 
            z-index: 2;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transition: var(--transition);
        }
        .play-button:hover {
            background: #ff5500;
            transform: translate(-50%, -50%) scale(1.1);
        }
        .video-info { padding: 25px; }
        .video-info h3 { margin-bottom: 15px; color: var(--primary); }
        .video-info p { color: var(--gray); margin-bottom: 15px; }
        .video-tags { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
        .video-tag { 
            background: var(--light-gray); 
            padding: 5px 12px; 
            border-radius: 20px; 
            font-size: 0.85rem; 
            color: var(--gray); 
        }
        
        /* Contact Section */
        .contact { 
            padding: 100px 0; 
            background: linear-gradient(135deg, var(--primary) 0%, #004080 100%); 
            color: white; 
        }
        .contact-container { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 50px; 
        }
        .contact-info h2 { font-size: 2.5rem; margin-bottom: 25px; }
        .contact-info p { margin-bottom: 35px; opacity: 0.9; font-size: 1.15rem; }
        .contact-details { margin-top: 50px; }
        .contact-detail { 
            display: flex; 
            align-items: flex-start; 
            margin-bottom: 25px; 
        }
        .contact-detail i { 
            font-size: 1.3rem; 
            margin-right: 20px; 
            color: var(--accent); 
            margin-top: 5px; 
        }
        .contact-detail a { color: white; text-decoration: none; }
        .contact-detail a:hover { text-decoration: underline; }
        .service-areas { 
            background: rgba(255,255,255,0.1); 
            padding: 20px; 
            border-radius: 8px; 
            margin: 30px 0; 
        }
        .service-areas h4 { margin-bottom: 15px; color: var(--accent); }
        .service-areas ul { padding-left: 20px; margin-top: 10px; }
        .service-areas li { margin-bottom: 8px; }
        
        .contact-form { 
            background: white; 
            padding: 45px; 
            border-radius: 10px; 
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); 
        }
        .contact-form h3 { color: var(--primary); margin-bottom: 25px; }
        .form-group { margin-bottom: 20px; }
        .form-group label { 
            display: block; 
            margin-bottom: 8px; 
            color: var(--dark); 
            font-weight: 500; 
        }
        .form-control { 
            width: 100%; 
            padding: 14px; 
            border: 1px solid var(--light-gray); 
            border-radius: 5px; 
            font-size: 1rem; 
            transition: var(--transition); 
        }
        .form-control:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.2);
        }
        .privacy-note { margin-top: 20px; font-size: 0.9rem; color: var(--gray); }
        .privacy-note a { color: var(--secondary); }
        
        /* Footer */
        footer { 
            background-color: var(--dark); 
            color: white; 
            padding: 60px 0 30px; 
        }
        .footer-content { 
            display: grid; 
            grid-template-columns: 1fr 2fr; 
            gap: 50px; 
            margin-bottom: 40px; 
        }
        .footer-logo { 
            font-weight: 700; 
            font-size: 1.8rem; 
            margin-bottom: 20px; 
        }
        .footer-logo span { color: var(--secondary); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
        .footer-column h3 { 
            margin-bottom: 20px; 
            color: var(--secondary); 
            font-size: 1.2rem; 
        }
        .footer-column ul { list-style: none; }
        .footer-column ul li { margin-bottom: 10px; }
        .footer-column a { 
            color: #ccc; 
            text-decoration: none; 
            transition: var(--transition); 
        }
        .footer-column a:hover { color: var(--secondary); }
        .social-links { display: flex; gap: 15px; margin-top: 20px; }
        .social-links a { 
            display: inline-flex; 
            align-items: center; 
            justify-content: center; 
            width: 40px; 
            height: 40px; 
            background-color: rgba(255, 255, 255, 0.1); 
            border-radius: 50%; 
            color: white; 
            transition: var(--transition); 
        }
        .social-links a:hover { 
            background-color: var(--secondary); 
            transform: translateY(-3px); 
        }
        .copyright { 
            text-align: center; 
            padding-top: 30px; 
            border-top: 1px solid rgba(255, 255, 255, 0.1); 
            color: #aaa; 
            font-size: 0.9rem; 
        }
        .footer-keywords { font-size: 0.85rem; color: #94a3b8; margin: 10px 0; line-height: 1.5; }
        .footer-schema { font-size: 0.8rem; color: #6c757d; margin-top: 10px; }
        
        /* Breadcrumb */
        .breadcrumb-nav { background: var(--light-gray); padding: 15px 0; }
        .breadcrumb { display: flex; list-style: none; }
        .breadcrumb li:after { content: "›"; margin: 0 10px; color: var(--gray); }
        .breadcrumb li:last-child:after { content: ""; }
        .breadcrumb a { color: var(--gray); text-decoration: none; }
        .breadcrumb a:hover { color: var(--primary); text-decoration: underline; }
        
        /* Accessibility */
        .skip-link { 
            position: absolute; 
            top: -40px; 
            left: 0; 
            background: var(--accent); 
            color: white; 
            padding: 10px; 
            z-index: 1001; 
            text-decoration: none;
        }
        .skip-link:focus { top: 0; }
        .sr-only { 
            position: absolute; 
            width: 1px; 
            height: 1px; 
            padding: 0; 
            margin: -1px; 
            overflow: hidden; 
            clip: rect(0,0,0,0); 
            border: 0; 
        }
        
        /* ========== COOKIE CONSENT BANNER ========== */
        .cookie-consent-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 25px;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
            z-index: 9999;
            transform: translateY(100%);
            transition: transform 0.5s ease-in-out;
            border-top: 4px solid var(--primary);
        }
        
        .cookie-consent-banner.active {
            transform: translateY(0);
        }
        
        .cookie-banner-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }
        
        .cookie-banner-text {
            flex: 1;
            min-width: 300px;
        }
        
        .cookie-banner-text h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .cookie-banner-text p {
            color: var(--dark);
            margin-bottom: 10px;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .cookie-banner-text a {
            color: var(--secondary);
            text-decoration: none;
        }
        
        .cookie-banner-text a:hover {
            text-decoration: underline;
        }
        
        .cookie-banner-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .cookie-btn {
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
            font-size: 0.95rem;
            white-space: nowrap;
        }
        
        .cookie-btn-accept {
            background: var(--primary);
            color: white;
        }
        
        .cookie-btn-accept:hover {
            background: #002244;
            transform: translateY(-2px);
        }
        
        .cookie-btn-settings {
            background: white;
            color: var(--primary);
            border-color: var(--primary);
        }
        
        .cookie-btn-settings:hover {
            background: var(--light-gray);
            transform: translateY(-2px);
        }
        
        .cookie-btn-reject {
            background: transparent;
            color: var(--gray);
            border-color: var(--light-gray);
        }
        
        .cookie-btn-reject:hover {
            background: var(--light-gray);
            transform: translateY(-2px);
        }
        
        /* Cookie Settings Modal */
        .cookie-settings-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: fadeIn 0.3s ease;
        }
        
        .cookie-settings-modal.active {
            display: flex;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .cookie-settings-content {
            background: white;
            border-radius: 10px;
            max-width: 700px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            animation: slideUp 0.3s ease;
        }
        
        @keyframes slideUp {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .cookie-settings-header {
            padding: 25px 30px;
            border-bottom: 1px solid var(--light-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .cookie-settings-header h2 {
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .close-settings {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--gray);
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .close-settings:hover {
            background: var(--light-gray);
            color: var(--dark);
        }
        
        .cookie-settings-body {
            padding: 30px;
        }
        
        .cookie-category {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .cookie-category:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .category-header h3 {
            color: var(--dark);
            font-size: 1.2rem;
        }
        
        .cookie-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 30px;
        }
        
        .cookie-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .cookie-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 34px;
        }
        
        .cookie-slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .cookie-slider {
            background-color: var(--success);
        }
        
        input:checked + .cookie-slider:before {
            transform: translateX(30px);
        }
        
        input:disabled + .cookie-slider {
            background-color: var(--primary);
            cursor: not-allowed;
        }
        
        .category-description {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .cookie-list {
            background: var(--light-gray);
            padding: 15px;
            border-radius: 8px;
            font-size: 0.9rem;
        }
        
        .cookie-list ul {
            margin: 10px 0 10px 20px;
        }
        
        .cookie-list li {
            margin-bottom: 8px;
        }
        
        .cookie-settings-footer {
            padding: 25px 30px;
            border-top: 1px solid var(--light-gray);
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .cookie-save-btn {
            padding: 12px 30px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .cookie-save-btn:hover {
            background: #002244;
            transform: translateY(-2px);
        }
        
        /* Cookie Preferences Link in Footer */
        .cookie-preferences-link {
            color: var(--secondary);
            cursor: pointer;
            text-decoration: none;
        }
        
        .cookie-preferences-link:hover {
            text-decoration: underline;
        }
        
        /* Responsive Design */
        @media (max-width: 1100px) {
            .video-grid { grid-template-columns: 1fr; }
            .video-card { max-width: 700px; margin: 0 auto; }
        }
        
        @media (max-width: 992px) {
            .hero-content { flex-direction: column; text-align: center; }
            .hero-text { padding-right: 0; margin-bottom: 50px; }
            .hero h1 { font-size: 2.5rem; }
            .section-title h2 { font-size: 2.2rem; }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            .nav-links { 
                display: none; 
                position: fixed; 
                top: 80px; 
                left: 0; 
                width: 100%; 
                background-color: white; 
                flex-direction: column; 
                align-items: center; 
                padding: 20px 0; 
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); 
                transform: translateY(-100%); 
                opacity: 0; 
                transition: var(--transition); 
                z-index: 999; 
            }
            .nav-links.active { 
                display: flex; 
                transform: translateY(0); 
                opacity: 1; 
            }
            .nav-links li { margin: 15px 0; }
            .hero h1 { font-size: 2rem; }
            .section-title h2 { font-size: 1.8rem; }
            .contact-container, .footer-content, .footer-links { grid-template-columns: 1fr; }
            .services-grid, .testimonial-grid { grid-template-columns: 1fr; }
            .conversion-cta { padding: 25px 20px; }
            .conversion-cta h3 { font-size: 1.5rem; }
            .hero-cta { flex-direction: column; align-items: center; }
            .trust-indicators { justify-content: center; }
            
            /* Cookie Banner Responsive */
            .cookie-banner-content {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-banner-actions {
                justify-content: center;
            }
            
            .cookie-settings-content {
                max-height: 85vh;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 { font-size: 1.8rem; }
            .hero p { font-size: 1rem; }
            .profile-img { width: 250px; height: 250px; }
            .video-grid { grid-template-columns: 1fr; }
            .video-player { height: 200px; }
            .service-card, .testimonial-card, .contact-form { padding: 25px 20px; }
            
            .cookie-settings-header,
            .cookie-settings-body,
            .cookie-settings-footer {
                padding: 20px;
            }
            
            .cookie-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }