

        /* Variables CSS harmonisées */
        :root {
            --primary: #2E8B57;
            --secondary: #FFD700;
            --accent: #4169E1;
            --light: #F8F9FA;
            --white: #FFFFFF;
            --dark: #2C3E50;
            --gray: #6C757D;
            --success: #28A745;
            --warning: #FFC107;
            --danger: #DC3545;
            --info: #17A2B8;
            
            --gradient-primary: linear-gradient(135deg, var(--primary) 0%, #3CB371 100%);
            --gradient-gold: linear-gradient(135deg, var(--secondary) 0%, #FFA500 100%);
            --gradient-light: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
            --shadow-xl: 0 12px 40px rgba(0,0,0,0.18);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
            color: var(--dark);
            position: relative;
            overflow-x: hidden;
        }

        /* Effets de fond décoratifs */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(46, 139, 87, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 40%);
            pointer-events: none;
            z-index: -1;
        }

        /* Container principal */
        .home-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        /* Header/Navigation */
        .main-header {
            background: var(--white);
            border-radius: 0 0 25px 25px;
            box-shadow: var(--shadow-md);
            padding: 1.5rem 2rem;
            margin-bottom: 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
            border: 1px solid rgba(46, 139, 87, 0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

        .logo-icon {
            font-size: 2.5rem;
            color: var(--primary);
            background: rgba(46, 139, 87, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-text {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.5px;
        }

        .logo-tagline {
            font-size: 0.9rem;
            color: var(--gray);
            margin-top: 2px;
            font-weight: 500;
        }

        .header-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
            opacity: 1;
            visibility: visible;
        }

        /* Hero Section */
        .hero-section {
            background: var(--gradient-primary);
            border-radius: 25px;
            padding: 6rem 4rem;
            margin: 3rem 0;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .hero-logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 3rem;
            animation: fadeInDown 1s ease;
        }

        .hero-logo-icon {
            font-size: 5rem;
            color: var(--white);
            background: rgba(255, 255, 255, 0.2);
            width: 120px;
            height: 120px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            border: 3px solid rgba(255, 255, 255, 0.3);
            animation: float 6s ease-in-out infinite;
        }

        .hero-logo-text {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--white);
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            letter-spacing: -1px;
        }

        .hero-vision {
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            padding: 1rem 2.5rem;
            margin: 2rem auto;
            display: inline-block;
            backdrop-filter: blur(10px);
            animation: slideInUp 0.8s ease;
        }

        .hero-vision-text {
            background: linear-gradient(135deg, var(--white) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: 0.5px;
        }

        .hero-tagline {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--white);
            font-weight: 700;
            text-shadow: 0 2px 8px rgba(0,0,0,0.2);
            line-height: 1.3;
            animation: fadeIn 1.2s ease;
        }

        .hero-description {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.95);
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.8;
            animation: fadeIn 1.4s ease;
        }

        /* Boutons harmonisés */
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            animation: fadeIn 1.6s ease;
        }

        .btn {
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            min-width: 200px;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            box-shadow: var(--shadow-lg);
        }

        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
            transform: translateX(-100%);
        }

        .btn:hover::after {
            transform: translateX(100%);
            transition: transform 0.6s ease;
        }

        .btn-primary {
            background: var(--white);
            color: var(--primary);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.2);
            border-color: var(--white);
        }

        .btn-secondary {
            background: var(--gradient-gold);
            color: var(--dark);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.25);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* Section Titres */
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--dark);
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 25%;
            width: 50%;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray);
            margin-bottom: 3rem;
            font-size: 1.2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        /* Sections */
        .section {
            background: var(--white);
            border-radius: 25px;
            padding: 5rem 3rem;
            margin: 3rem 0;
            box-shadow: var(--shadow-md);
            border: 2px solid rgba(46, 139, 87, 0.1);
            position: relative;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-primary);
            border-radius: 25px 25px 0 0;
        }

        /* Features - Ce que vous pouvez faire */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 2px solid rgba(46, 139, 87, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-primary);
        }

        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            padding: 1rem;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

        .feature-icon-post {
            background: var(--gradient-primary);
            color: white;
        }

        .feature-icon-photo {
            background: linear-gradient(135deg, #9B59B6 0%, #8E44AD 100%);
            color: white;
        }

        .feature-icon-event {
            background: var(--gradient-gold);
            color: var(--dark);
        }

        .feature-icon-group {
            background: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
            color: white;
        }

        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 600;
        }

        .feature-description {
            color: var(--gray);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        .feature-examples {
            list-style: none;
            text-align: left;
            margin-top: 1.5rem;
            background: var(--gradient-light);
            padding: 1.2rem;
            border-radius: 10px;
        }

        .feature-examples li {
            margin-bottom: 0.5rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .feature-examples li i {
            color: var(--secondary);
            font-size: 0.8rem;
        }

        /* Catégories Section */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .category-card {
            background: var(--white);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .category-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }

        .category-title {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: var(--dark);
            font-weight: 600;
        }

        .category-description {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        /* Stats Section */
        .stats-section {
            background: var(--gradient-light);
            border: 2px solid rgba(46, 139, 87, 0.1);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: var(--white);
            border-radius: 15px;
            border: 2px solid rgba(46, 139, 87, 0.1);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }

        .stat-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-label {
            color: var(--gray);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: var(--light);
            border-radius: 15px;
            padding: 2rem;
            border-left: 5px solid var(--secondary);
            position: relative;
            box-shadow: var(--shadow-sm);
        }

        .testimonial-quote {
            font-size: 3rem;
            color: var(--secondary);
            line-height: 1;
            margin-bottom: 1rem;
            opacity: 0.3;
            position: absolute;
            top: 1rem;
            left: 1rem;
        }

        .testimonial-text {
            color: var(--dark);
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            color: var(--primary);
            font-weight: 600;
        }

        .testimonial-author span {
            color: var(--gray);
            font-weight: normal;
            display: block;
            font-size: 0.9rem;
            margin-top: 0.2rem;
        }

        /* Why Apolitique Section */
        .why-section {
            background: linear-gradient(135deg, rgba(44, 62, 80, 0.05) 0%, rgba(74, 100, 145, 0.05) 100%);
        }

        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .reason-card {
            text-align: center;
            padding: 2rem;
            background: var(--white);
            border-radius: 15px;
            box-shadow: var(--shadow-sm);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
        }

        .reason-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary);
        }

        .reason-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .reason-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 600;
        }

        .reason-description {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-primary);
            border-radius: 25px;
            padding: 6rem 4rem;
            margin: 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
        }

        .cta-title {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .cta-description {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            max-width: 700px;
            margin: 0 auto 3rem;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        /* Footer */
        .main-footer {
            background: var(--dark);
            color: white;
            padding: 4rem 2rem 2rem;
            border-radius: 25px 25px 0 0;
            margin-top: 4rem;
            border-top: 3px solid var(--primary);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-info {
            max-width: 300px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 1.5rem;
        }

        .footer-logo-icon {
            font-size: 2.5rem;
            color: var(--secondary);
        }

        .footer-logo-text {
            font-size: 2rem;
            font-weight: 700;
            color: white;
        }

        .footer-vision {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .footer-links h3,
        .footer-contact h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }

        .footer-contact p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .footer-social {
            margin: 1.5rem 0;
        }

        .social-icon {
            display: inline-flex;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: translateY(-3px);
        }

        /* Messages d'alerte */
        .message-alert {
            max-width: 800px;
            margin: 2rem auto;
            padding: 1.5rem 2rem;
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: var(--shadow-md);
            animation: slideInDown 0.5s ease;
            border-left: 5px solid;
            background: white;
        }

        .message-alert.success {
            border-left-color: var(--success);
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%);
            color: var(--dark);
        }

        .message-alert.error {
            border-left-color: var(--danger);
            background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
            color: var(--dark);
        }

        /* Progress Bar */
        .progress-container {
            width: 100%;
            background: rgba(46, 139, 87, 0.1);
            border-radius: 10px;
            margin: 0.5rem 0;
            overflow: hidden;
        }

        .progress-bar {
            height: 8px;
            background: var(--gradient-primary);
            border-radius: 10px;
            transition: width 1.5s ease;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes confetti {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(100vh) rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-logo-text {
                font-size: 2.8rem;
            }
            
            .hero-tagline {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .cta-title {
                font-size: 2.5rem;
            }
            
            .hero-section,
            .section,
            .cta-section {
                padding: 4rem 2rem;
            }
        }

        @media (max-width: 768px) {
            .home-container {
                padding: 0 15px;
            }
            
            .main-header {
                padding: 1rem;
                border-radius: 0 0 20px 20px;
            }
            
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }
            
            .hero-logo-text {
                font-size: 2.2rem;
            }
            
            .hero-tagline {
                font-size: 1.5rem;
            }
            
            .hero-description {
                font-size: 1.1rem;
                padding: 0 1rem;
            }
            
            .hero-buttons,
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .features-grid,
            .categories-grid,
            .stats-grid,
            .testimonials-grid,
            .reasons-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .hero-section,
            .section,
            .cta-section {
                padding: 3rem 1.5rem;
                margin: 2rem 0;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-logo-text {
                font-size: 1.8rem;
            }
            
            .hero-tagline {
                font-size: 1.3rem;
            }
            
            .hero-description {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .feature-card,
            .category-card,
            .testimonial-card,
            .reason-card,
            .stat-item {
                padding: 1.5rem;
            }
            
            .main-footer {
                padding: 3rem 1.5rem 1.5rem;
            }
            
            .btn {
                padding: 1rem 1.5rem;
                font-size: 1rem;
            }

        }
.header-actions {
    opacity: 1;
    visibility: visible;
}
/* Correction spécifique pour les boutons du header */
.header-actions .btn-outline {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    background: transparent !important;
}

.header-actions .btn-outline:hover {
    background: var(--primary) !important;
    color: white !important;
    transform: translateY(-2px);
}

.header-actions .btn-primary {
    background: var(--primary) !important;
    color: white !important;
}

.header-actions .btn-primary:hover {
    background: #257a4a !important; /* Version plus foncée */
    transform: translateY(-2px);
}
 
/* ================================================= */
/* FORCE POLICE PRINCIPALE POUR SIDEBAR               */
/* ================================================= */

.sidebar-left,
.sidebar-left * {
    font-family: var(--font-family) !important;
    font-weight: 500;
}
