  @import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');
        /* Variables CSS pour une cohérence des couleurs */
        :root {
            --primary-orange: #F7931E;
            --primary-green: #4CAF50;
            --secondary-green: #388E3C;
            --light-bg: #f8fafc;
            --white: #ffffff;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-medium: 0 10px 15px rgba(0, 0, 0, 0.1);
            --shadow-heavy: 0 20px 25px rgba(0, 0, 0, 0.15);
        }
        body {
            font-family: 'Inter', 'Noto Sans', sans-serif;
            scroll-behavior: smooth;
            background: linear-gradient(to bottom, var(--white) 0%, var(--light-bg) 100%);
            color: var(--text-dark);
            line-height: 1.6;
        }
        /* Classes utilitaires */
        .gradient-text {
            background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-green) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-gradient {
            background: linear-gradient(135deg, rgba(247,147,30,0.9) 0%, rgba(76,175,80,0.9) 100%);
        }
        .info-bar {
            background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-green) 100%);
            color: var(--white);
            font-size: 0.875rem;
            padding: 0.5rem 0;
        }
        .info-item {
            display: flex;
            align-items: center;
            margin-right: 1.5rem;
        }
        .info-item i {
            margin-right: 0.5rem;
            color: var(--white);
        }
        /* Navigation - MODIFIÉ POUR SURVOL EN #4CAF50 */
        .nav-link {
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover, .nav-link.active {
            color: #4CAF50 !important; /* Changé pour le vert demandé */
            transform: scale(1.05);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #4CAF50; /* Changé pour le vert demandé */
            transition: width 0.3s ease;
        }
        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }
        .dropdown:hover .dropdown-menu {
            display: block;
            animation: fade-up 0.3s ease-out forwards;
        }
        /* MODIFIÉ: Couleur de survol des éléments dropdown */
        .dropdown-item:hover {
            background-color: rgba(76, 175, 80, 0.1) !important;
            color: #4CAF50 !important;
        }
        /* Effets d'interaction */
        .btn-hover:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
            transition: all 0.3s ease;
        }
        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }
        .hover-scale {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-scale:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: var(--shadow-heavy);
        }
        /* Timeline - Présentation SGI */
        .timeline-item {
            position: relative;
            padding-left: 2.5rem;
            margin-bottom: 2rem;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: 0.5rem;
            top: 0;
            height: 100%;
            width: 2px;
            background: var(--primary-green);
        }
        .timeline-dot {
            position: absolute;
            left: 0;
            top: 0;
            width: 1.5rem;
            height: 1.5rem;
            border-radius: 50%;
            background: var(--primary-orange);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 0.75rem;
        }
        .history-photo {
            transition: transform 0.3s ease;
            border-radius: 8px;
            overflow: hidden;
        }
        .history-photo:hover {
            transform: scale(1.03);
        }
        .charte-principle {
            border-left: 4px solid var(--primary-orange);
            padding-left: 1.5rem;
            margin-bottom: 2rem;
        }
        .charte-icon {
            background-color: var(--primary-orange);
            color: var(--white);
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        /* Timeline - Histoire du Bouddhisme */
        .timeline-buddhism {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        .timeline-buddhism::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--primary-green);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }
        .timeline-container {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
        }
        .timeline-container::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -17px;
            background-color: var(--primary-orange);
            border: 4px solid var(--secondary-green);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        .left {
            left: 0;
        }
        .right {
            left: 50%;
        }
        .left::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            right: 30px;
            border: medium solid #f1f1f1;
            border-width: 10px 0 10px 10px;
            border-color: transparent transparent transparent #f1f1f1;
        }
        .right::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            left: 30px;
            border: medium solid #f1f1f1;
            border-width: 10px 10px 10px 0;
            border-color: transparent #f1f1f1 transparent transparent;
        }
        .right::after {
            left: -16px;
        }
        .timeline-content {
            padding: 20px 30px;
            background-color: var(--white);
            position: relative;
            border-radius: 6px;
            box-shadow: var(--shadow-light);
        }
        /* Animations */
        @keyframes fade-up {
            0% {
                opacity: 0;
                transform: translateY(10px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        /* Barre de progression */
        .progress-bar {
            height: 4px;
            background-color: #f1f5f9;
            border-radius: 999px;
        }
        .progress-fill {
            height: 100%;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--primary-orange), var(--primary-green));
            width: 0%;
            transition: width 2s ease-in-out;
        }
        /* Cartes de témoignages */
        .testimonial-card {
            transition: all 0.4s ease;
        }
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px -10px rgba(247, 147, 30, 0.3);
        }
        .icon-hover {
            transition: all 0.3s ease;
        }
        .icon-hover:hover {
            transform: scale(1.1);
            color: var(--primary-orange);
        }
        /* Barre de défilement personnalisée */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary-orange);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #ea580c;
        }
        /* Responsive Design */
        @media screen and (max-width: 768px) {
            .timeline-buddhism::after {
                left: 31px;
            }
            .timeline-container {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            .timeline-container::before {
                left: 60px;
                border: medium solid white;
                border-width: 10px 10px 10px 0;
                border-color: transparent white transparent transparent;
            }
            .left::after, .right::after {
                left: 15px;
            }
            .right {
                left: 0%;
            }
            .mobile-fade {
                animation: fade-up 0.6s ease-out forwards;
            }
            .info-item {
                margin-right: 0.8rem;
                margin-bottom: 0.5rem;
            }
        }

        /**/
        .meaning-card {
            background: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            border-top: 4px solid #F7931E;
        }
        
        .chanting-section {
            background: rgba(76, 175, 80, 0.1);
            border-radius: 8px;
            padding: 2rem;
            margin: 3rem 0;
        }
        
        .sanskrit {
            font-family: 'Noto Sans', sans-serif;
            font-size: 1.5rem;
            color: #F7931E;
            font-weight: bold;
        }

         .gongyo-section {
            background: rgba(247, 147, 30, 0.1);
            border-radius: 8px;
            padding: 2rem;
            margin: 2rem 0;
        }
        
        .sutra-text {
            font-family: 'Noto Sans', sans-serif;
            line-height: 2;
            text-align: justify;
        }
        
        .chinese-char {
            font-size: 1.2rem;
            color: #388E3C;
        }
           .gohonzon-detail {
            border-left: 4px solid #F7931E;
            padding-left: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .symbol-icon {
            background-color: #4CAF50;
            color: white;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .butsudan-img {
            transition: transform 0.3s ease;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .butsudan-img:hover {
            transform: scale(1.03);
        }

         .nichiren-timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .nichiren-timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: #F7931E;
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }
        
        .nichiren-container {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
        }
        
        .nichiren-container::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -17px;
            background-color: #4CAF50;
            border: 4px solid #388E3C;
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        
        .nichiren-left {
            left: 0;
        }
        
        .nichiren-right {
            left: 50%;
        }

           .makiguchi-container {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
        }
        
        .makiguchi-container::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -17px;
            background-color: #4CAF50;
            border: 4px solid #388E3C;
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
         .btn-hover:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .dropdown:hover .dropdown-menu {
            display: block;
        }
        
        .info-bar {
            background-color: #4CAF50;
            color: white;
            font-size: 0.875rem;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            margin-right: 1.5rem;
        }
        
        .info-item i {
            margin-right: 0.5rem;
            color: #F7931E;
        }
  
  
        
        .toda-philosophy {
            border-left: 4px solid #4CAF50;
            padding-left: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .toda-icon {
            background-color: #F7931E;
            color: white;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

           .ikeda-achievements {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .achievement-card {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .achievement-card:hover {
            transform: translateY(-5px);
        }
        
        .achievement-icon {
            font-size: 2rem;
            color: #F7931E;
            margin-bottom: 1rem;
        }