/* --- CHARTE GRAPHIQUE SELIM AKLIL --- */
        :root {
            --color-brand-orange: #FA8334;
            --color-brand-yellow: #F4B648;
            --color-brand-blue: #02008D;
            --color-brand-green-dark: #8CD7AC;
            --color-teal-link: #02008D;
            --color-gray-50: #f9fafb;
            --color-gray-100: #f3f4f6;
            --color-gray-200: #e5e7eb;
            --color-gray-300: #d1d5db;
            --color-gray-400: #9ca3af;
            --color-gray-600: #374151;
            --color-gray-700: #1f2937;
            --color-gray-800: #111827;
            --color-gray-900: #030712;
            --font-inter: 'Inter', sans-serif;
        }
        body { font-family: 'Inter', sans-serif; }
        /* Masquer la scrollbar pour le menu tout en gardant le scroll */
        .custom-scrollbar::-webkit-scrollbar { width: 6px; }
        .custom-scrollbar::-webkit-scrollbar-track { background: #111827; }
        .custom-scrollbar::-webkit-scrollbar-thumb { background: #374151; border-radius: 3px; }
        
        .animate-fade-in-up { animation: fadeInUp 0.5s ease-out; }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
