  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--off-white);
            color: var(--dark-text);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        /* ===== COULEURS THEME ===== */
        :root {
            --olive: #5E6B3C;
            --gold: #C9A03D;
            --deep-blue: #1A3E4C;
            --off-white: #FEFCF8;
            --dark-text: #2C3E4E;
            --light-gray: #F5F3EE;
            --shadow-sm: 0 10px 30px -10px rgba(0,0,0,0.05);
            --shadow-md: 0 20px 35px -12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }

        h1, h2, h3, h4, .logo, .nav-links a, .btn, .stat-number, blockquote {
            font-family: 'Inter', sans-serif;
        }

        .serif {
            font-family: 'Cormorant Garamond', serif;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Boutons */
        .btn {
            display: inline-block;
            padding: 0.9rem 2rem;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }

        .btn-primary {
            background-color: var(--olive);
            color: white;
            box-shadow: 0 4px 8px rgba(94,107,60,0.2);
        }

        .btn-primary:hover {
            background-color: #4a5630;
            transform: translateY(-3px);
            box-shadow: 0 12px 20px -8px rgba(94,107,60,0.4);
        }

        .btn-outline {
            background: transparent;
            border: 1.5px solid var(--gold);
            color: var(--deep-blue);
        }

        .btn-outline:hover {
            background: var(--gold);
            color: white;
            border-color: var(--gold);
            transform: translateY(-2px);
        }

        .btn-gold {
            background-color: var(--gold);
            color: var(--deep-blue);
        }
        .btn-gold:hover {
            background-color: #b38f2f;
            color: white;
        }

        /* Header / Navbar avec menu responsive */
        .navbar {
            background: rgba(254,252,248,0.96);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 4px 12px rgba(0,0,0,0.02);
            padding: 1rem 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--olive) 0%, var(--deep-blue) 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .logo span {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--gold);
            letter-spacing: 1px;
            display: block;
            line-height: 1.2;
        }

        .nav-links {
            display: flex;
            gap: 2.2rem;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: var(--dark-text);
            transition: 0.2s;
            font-size: 1rem;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .menu-toggle {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: var(--deep-blue);
            transition: var(--transition);
            padding: 0.5rem;
            z-index: 1001;
        }

        .menu-toggle:hover {
            color: var(--gold);
        }

        @media (max-width: 850px) {
            .menu-toggle {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                max-width: 320px;
                height: 100vh;
                background: rgba(254,252,248,0.98);
                backdrop-filter: blur(12px);
                flex-direction: column;
                justify-content: center;
                gap: 2rem;
                padding: 2rem;
                box-shadow: -5px 0 25px rgba(0,0,0,0.1);
                transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
                z-index: 1000;
                border-left: 3px solid var(--gold);
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                width: 100%;
                text-align: center;
            }
            .nav-links a {
                display: block;
                font-size: 1.3rem;
                padding: 0.8rem 0;
                font-weight: 600;
            }
            .btn-donate {
                display: inline-block;
                margin-top: 0.5rem;
                background: var(--gold);
                color: var(--deep-blue);
                border-radius: 40px;
                padding: 0.7rem 1.8rem;
            }
            .menu-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0,0,0,0.3);
                backdrop-filter: blur(2px);
                z-index: 999;
                opacity: 0;
                visibility: hidden;
                transition: 0.3s;
            }
            .menu-overlay.active {
                opacity: 1;
                visibility: visible;
            }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(97deg, rgba(30,62,74,0.88) 0%, rgba(94,107,60,0.82) 100%), url('https://images.pexels.com/photos/3184418/pexels-photo-3184418.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        .hero-title {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .hero-sub {
            font-size: 1.2rem;
            margin-bottom: 32px;
            opacity: 0.95;
        }

        /* Sections générales */
        section {
            padding: 5rem 0;
        }
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--deep-blue);
            margin-bottom: 1rem;
        }
        .section-sub {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem auto;
            font-size: 1.1rem;
            color: #4a5b6b;
        }

        /* Cartes mission & axes */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .mission-card, .axis-card {
            background: white;
            padding: 2rem 1.8rem;
            border-radius: 28px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            text-align: center;
            border: 1px solid rgba(201,160,61,0.1);
        }
        .mission-card:hover, .axis-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
            border-color: var(--gold);
        }
        .mission-icon, .axis-icon {
            font-size: 2.8rem;
            color: var(--gold);
            margin-bottom: 1.2rem;
        }
        .mission-card h3, .axis-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--olive);
        }

        /* valeurs & stats */
        .values-stats {
            background: var(--light-gray);
        }
        .stats-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-top: 3rem;
            text-align: center;
        }
        .stat-item {
            flex: 1;
            background: white;
            padding: 2rem 1rem;
            border-radius: 32px;
            box-shadow: var(--shadow-sm);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--gold);
        }

        /* Section hommage / histoire */
        .tribute-section {
            background: linear-gradient(120deg, var(--deep-blue) 0%, #1f4a5a 100%);
            color: white;
            border-radius: 48px;
            padding: 3rem;
            margin: 2rem 0;
        }
        .tribute-section h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--gold);
        }
        .verse {
            font-style: italic;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            border-left: 3px solid var(--gold);
            padding-left: 1.5rem;
            margin: 1.5rem 0;
        }

        /* Gouvernance grid */
        .governance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        .governance-card {
            background: white;
            border-radius: 24px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: var(--shadow-sm);
        }
        .governance-card h4 {
            color: var(--olive);
            margin-bottom: 0.5rem;
        }

        /* Plan d'action timeline */
        .timeline {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 2rem;
        }
        .phase {
            background: white;
            border-radius: 20px;
            padding: 1.5rem;
            flex: 1;
            min-width: 220px;
            box-shadow: var(--shadow-sm);
            border-top: 4px solid var(--gold);
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .impact-item {
            border-radius: 24px;
            overflow: hidden;
            background: white;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .impact-item:hover {
            transform: scale(1.02);
        }
        .impact-content {
            padding: 1.5rem;
        }

        .testimonial {
            background: var(--deep-blue);
            color: white;
            text-align: center;
            padding: 4rem 2rem;
            border-radius: 48px;
            margin: 2rem 0;
        }
        .testimonial i {
            font-size: 3rem;
            color: var(--gold);
            opacity: 0.7;
            margin-bottom: 1rem;
        }

        footer {
            background: #1e2e38;
            color: #ddd;
            padding: 3rem 0 2rem;
            margin-top: 2rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .social-icons a {
            color: #bbb;
            margin-right: 1.2rem;
            font-size: 1.3rem;
            transition: 0.2s;
        }
        .social-icons a:hover {
            color: var(--gold);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .btn-donate {
            background-color: var(--gold);
            color: var(--deep-blue);
            padding: 0.6rem 1.5rem;
            border-radius: 40px;
            font-weight: 700;
        }
        @media (max-width: 800px) {
            .hero-title { font-size: 2.2rem; }
            .section-title { font-size: 2rem; }
            .container { padding: 0 1.5rem; }
            .tribute-section { padding: 1.8rem; }
        }
        /* Structure en grid moderne (remplace Bootstrap) */
        .row {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

        .col-md-4 {
            flex: 1;
            min-width: 250px;
        }

        .col-md-8 {
            flex: 2;
            min-width: 300px;
        }

        /* Style pour l'image */
        .fond {
            width: 100%;
            max-width: 320px;
            height: auto;
            border-radius: 32px;
            box-shadow: var(--shadow-md);
            transition: transform 0.3s ease;
            display: block;
            margin: 0 auto;
        }

        .fond:hover {
            transform: scale(1.02);
        }

        /* Section hommage */
        .tribute-section {
            background: linear-gradient(135deg, var(--deep-blue) 0%, #1f4a5a 100%);
            color: white;
            border-radius: 48px;
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
        }

        .tribute-section h3 {
            font-size: 1.8rem;
            margin-bottom: 1.2rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .tribute-section p {
            margin-bottom: 1rem;
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.95;
        }

        .verse {
            font-style: italic;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            border-left: 3px solid var(--gold);
            padding-left: 1.2rem;
            margin: 1.2rem 0;
            color: rgba(255,255,240,0.95);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .row {
                flex-direction: column;
                text-align: center;
            }
            .verse {
                text-align: left;
            }
            .tribute-section {
                padding: 1.8rem;
            }
            .tribute-section h3 {
                justify-content: center;
            }
            .fond {
                max-width: 240px;
            }
        }

        /* Optionnel : amélioration du bouton ou petits détails */
        .btn-navigation {
            display: inline-block;
            margin-top: 1rem;
            background: var(--gold);
            color: var(--deep-blue);
            padding: 0.6rem 1.5rem;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.2s;
        }
        .btn-navigation:hover {
            background: #b38f2f;
            color: white;
        }
