            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
            
            body {
                overflow-x: hidden;
                margin: 0;
                padding: 0;
                background: #fdfbf7;
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            }



/* Footer moderne */
            footer {
                background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
                color: #e2e8f0;
                padding: 3rem 0 1.5rem;
                margin-top: auto;
            }
            
            footer h5 {
                font-weight: 600;
                font-size: 1.1rem;
                margin-bottom: 1rem;
                color: white;
            }
            
            footer a {
                color: #e2e8f0;
                text-decoration: none;
                transition: all 0.3s ease;
                display: inline-block;
            }
            
            footer a:hover {
                color: #667eea;
                transform: translateX(5px);
            }
            
            #voila {
                font-family: 'Tangerine', serif;
                font-size: 2.3rem;
                font-weight: bold;
                color: #e2e8f0;
                margin: 0;
            }
            
            footer img {
                transition: all 0.3s ease;
                opacity: 0.8;
                filter: brightness(0) invert(1);
            }
            
            footer img:hover {
                transform: scale(1.15) rotate(5deg);
                opacity: 1;
            }
            
            .footer-divider {
                height: 1px;
                background: linear-gradient(90deg, transparent 0%, #667eea 50%, transparent 100%);
                margin: 2rem 0 1.5rem;
            }
            
            .footer-bottom {
                text-align: center;
                font-size: 0.9rem;
                opacity: 0.7;
            }
            
            #voila {
            font-family: 'Tangerine', serif;
            font-size: 2.5rem;
            font-weight: bold;
            color: #5a5a5a;
            margin-bottom: 0;
            white-space: nowrap;
        }

/* Navigation épurée */
            .navbar {
                background: #ffffff;
                box-shadow: 0 2px 12px rgba(0,0,0,0.06);
                padding: 1.5rem 2rem;
                border-bottom: 1px solid #f0ebe3;
            }
            
            .navbar-brand {
                margin: 0 auto;
                display: block;
                text-align: center;
                padding: 0;
            }
            
            .navbar-brand img {
                height: 140px;
                transition: transform 0.3s ease;
            }
            
            .navbar-brand img:hover {
                transform: scale(1.05);
            }
            
            .navbar-collapse {
                justify-content: center;
            }
            
            .navbar .nav-link {
                color: #5a5a5a !important;
                font-weight: 500;
                padding: 0.5rem 1.5rem !important;
                border-radius: 8px;
                transition: all 0.3s ease;
                margin: 0 0.5rem;
                font-size: 1.1rem;
            }
            
            .navbar .nav-link:hover {
                background: #f0ebe3;
                color: #3b82f6 !important;
            }
            
            .navbar .nav-link.active {
                background: #eff6ff;
                color: #3b82f6 !important;
                font-weight: 600;
            }

            @media (min-width: 992px) {
                .navbar {
                    flex-direction: column;
                }
                
                .navbar-brand {
                    margin-bottom: 1rem;
                    }
                }

/*                @font-face {
                font-family: "Tangerine";
                src: url("/fonts/Tangerine-Regular.ttf") format("truetype");
                font-weight: normal;
                font-style: normal;
                font-display: swap;
            }

                @font-face {
                font-family: "Tangerine";
                src: url("/fonts/Tangerine-Bold.ttf") format("truetype");
                font-weight: bold;
                font-style: normal;
            }
*/

/* Bandeau cookies moderne */
            .cookie-banner {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
                border-top: 3px solid #667eea;
                box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
                padding: 2rem;
                z-index: 9999;
                display: none;
                animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                backdrop-filter: blur(10px);
            }
            
            .cookie-banner.show {
                display: block;
            }
            
            @keyframes slideUp {
                from {
                    transform: translateY(100%);
                    opacity: 0;
                }
                to {
                    transform: translateY(0);
                    opacity: 1;
                }
            }
            
            .cookie-content {
                max-width: 1200px;
                margin: 0 auto;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 2rem;
                flex-wrap: wrap;
            }
            
            .cookie-icon {
                font-size: 3rem;
                animation: bounce 2s infinite;
            }
            
            @keyframes bounce {
                0%, 100% { transform: translateY(0); }
                50% { transform: translateY(-10px); }
            }
            
            .cookie-text {
                flex: 1;
                color: #5a5a5a;
                font-size: 1rem;
                line-height: 1.7;
            }
            
            .cookie-text strong {
                color: #3b82f6;
                font-size: 1.1rem;
            }
            
            .cookie-text a {
                color: #667eea;
                text-decoration: none;
                font-weight: 600;
                border-bottom: 2px solid transparent;
                transition: border-color 0.3s ease;
            }
            
            .cookie-text a:hover {
                border-bottom-color: #667eea;
            }
            
            .cookie-buttons {
                display: flex;
                gap: 1rem;
                flex-shrink: 0;
            }
            
            .cookie-btn {
                padding: 0.9rem 2.2rem;
                border: none;
                border-radius: 12px;
                font-weight: 600;
                font-size: 1rem;
                cursor: pointer;
                transition: all 0.3s ease;
                box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            }
            
            .cookie-btn-accept {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                color: white;
            }
            
            .cookie-btn-accept:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
            }
            
            .cookie-btn-decline {
                background: #f1f5f9;
                color: #5a5a5a;
            }
            
            .cookie-btn-decline:hover {
                background: #e2e8f0;
                transform: translateY(-2px);
            }
            
/* Animations */
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            .modern-card {
                animation: fadeInUp 0.7s ease-out;
                animation-fill-mode: both;
            }
            
            .modern-card:nth-child(1) {
                animation-delay: 0.1s;
            }
            
            .modern-card:nth-child(2) {
                animation-delay: 0.25s;
            }
            
            .feature-item {
                animation: fadeInUp 0.7s ease-out;
                animation-fill-mode: both;
            }
            
            .feature-item:nth-child(1) {
                animation-delay: 0.2s;
            }
            
            .feature-item:nth-child(2) {
                animation-delay: 0.4s;
            }
            
            .feature-item:nth-child(3) {
                animation-delay: 0.6s;
            }
            
/* Responsive */
                .cookie-content {
                    flex-direction: column;
                    text-align: center;
                    gap: 1.5rem;
                }
                
                .cookie-buttons {
                    width: 100%;
                    flex-direction: column;
                }
                
                .cookie-btn {
                    width: 100%;
                }
                
                .cookie-banner {
                    padding: 1.5rem;
                }
                        
                
/* Cadre d'appel à l'action - cohérent avec le style existant */
            .cta-box {
                background: #ffffff;
                border-radius: 16px;
                padding: 2.5rem;
                text-align: center;
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
                border: 1px solid #f0ebe3;
                margin-bottom: 2rem;
            }

            .cta-box-title {
                color: #3b82f6;
                font-size: 1.8rem;
                font-weight: 700;
                margin-bottom: 0.75rem;
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            }

            .cta-box-text {
                color: #5a5a5a;
                font-size: 1.1rem;
                margin-bottom: 2rem;
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            }

            .cta-links {
                display: flex;
                flex-wrap: wrap;
                gap: 1rem;
                justify-content: center;
                min-height: 50px;
            }

            .cta-link {
                background: linear-gradient(135deg, #3b82f6, #60a5fa);
                color: #ffffff;
                padding: 1.2rem 2rem;
                border-radius: 12px;
                text-decoration: none;
                font-weight: 700;
                font-size: 1.2rem;
                transition: all 0.3s ease;
                font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
                box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
            }

            .cta-link:hover {
                background: linear-gradient(135deg, #2563eb, #3b82f6);
                transform: translateY(-3px);
                box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
                color: #ffffff;
            }

            .cta-box-footer {
                padding-top: 1rem;
                border-top: 1px solid #f0ebe3;
            }

/* Responsive CTA */
            @media (max-width: 768px) {
                .cta-box {
                    padding: 2rem 1.5rem;
                }
                
                .cta-box-title {
                    font-size: 1.5rem;
                }
                
                .cta-box-text {
                    font-size: 1rem;
                }
                
                .cta-links {
                    flex-direction: column;
                    align-items: stretch;
                }
                
                .cta-link {
                    text-align: center;
                }
            }