
        :root {
            --primary-blue: #007bff;
            --accent-yellow: #ffd700;
            --text-black: #333;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --dark: #212529;
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            color: var(--text-black);
            line-height: 1.6;
        }

        .d-flex {
            padding: 0px 40px 0px 40px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 15px;
            padding-right: 15px;
        }

        .navbar-custom {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1030;
        }

        .navbar-custom.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--primary-blue) !important;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--text-black) !important;
            margin: 0 10px;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-blue) !important;
            transform: translateY(-2px);
        }

        .btn-nav {
            background: linear-gradient(45deg, var(--primary-blue), #0056b3);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-nav:hover {
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
        }

        .btn-custom {
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            border: none;
            margin: 10px 5px;
        }

        .btn-primary-custom {
            background: linear-gradient(45deg, var(--primary-blue), #0056b3);
            color: white;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(0, 123, 255, 0.3);
            color: white;
        }

        .btn-primary-custom:disabled {
            background: #6c757d;
            transform: none;
            box-shadow: var(--shadow);
            cursor: not-allowed;
            opacity: 0.6;
        }

        .btn-secondary-custom {
            background: linear-gradient(45deg, #6c757d, #495057);
            color: white;
        }

        .btn-secondary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(108, 117, 125, 0.3);
            color: white;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2px;
            margin: 8px 0;
        }

        .animate__fadeInDown {
            animation-name: fadeInDown;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translate3d(0, -40px, 0);
            }
            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        /* Bouton Scroll Down */
        .scroll-down-indicator {
            position: fixed;
            bottom: 60px;
            left: 92%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #bb555d;
            font-size: 24px;
            z-index: 1000;
            transition: all 0.3s ease;
            animation: bounceDown 1.0s ease-in-out infinite;
        }

        .scroll-down-indicator.hide {
            opacity: 0;
            visibility: hidden;
        }

        .chevron-down {
            line-height: 0.8;
        }

        @keyframes bounceDown {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-12px);
            }
            60% {
                transform: translateX(-50%) translateY(-6px);
            }
        }




        .page-header {
            position: relative; /* Crée un contexte de positionnement */
            background-image: url('');
            background-size: cover; /* Image proportionnelle à la largeur */
            background-position: center;
            background-repeat: no-repeat;
            min-height: 160px; /* Hauteur augmentée pour visibilité */
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white; /* Texte blanc pour contraste */
            z-index: 1; /* Assure que la section est au-dessus d'autres éléments */
            overflow: visible; /* Évite que le contenu soit coupé */
        }

        /* Ajout d'un calque semi-transparent pour améliorer la lisibilité */
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.2); /* Calque sombre pour contraste */
            z-index: 2; /* Sous le texte, mais au-dessus de l'image */
        }

        /* Conteneur du texte */
        .page-header .container {
            position: relative;
            z-index: 3; /* Place le texte au-dessus du calque et de l'image */
            padding-top: 0.5rem; /* Réduit le padding */
            padding-bottom: 0.5rem;
        }

        .page-header .col-12 {
            padding-top: 0; /* Supprime le padding par défaut de Bootstrap */
            padding-bottom: 0;
        }

        /* Styles pour le texte */
        .page-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0.5rem 0; /* Réduit la marge (au lieu de 1rem en bas) */
            /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);  Ombre pour lisibilité */
            background: rgba(0, 0, 0, 0.3); /* Fond semi-transparent derrière le texte */
            padding: 1.2rem 0.5rem; /* Léger padding pour le fond */
            border-radius: 10px; /* Coins arrondis pour le fond */
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7); /* Ombre plus prononcée */
        }

        .page-header p.lead {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            font-weight: 500;
            margin: 0.5rem 0; /* Réduit la marge */
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
            background: rgba(0, 0, 0, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }

        .info-card-cta {
            background: linear-gradient(135deg, #e6f0fa, #d0e6ff);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }

        .info-card-cta h4 {
            color: var(--primary-blue);
            font-weight: bold;
            margin-bottom: 15px;
        }

        .info-card-cta p {
            color: #666;
            margin-bottom: 0;
            line-height: 1.7;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--primary-blue), #00E5E0);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }


        
        .pricing-section {
            padding: 10px 0;
            background: white;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 20px 10px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-blue);
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(45deg, var(--primary-blue), #0056b3);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: var(--primary-blue);
        }

        .pricing-badge {
            /* background: linear-gradient(45deg, var(--primary-blue), var(--accent-yellow)); */
            background: linear-gradient(45deg, var(--primary-blue), #0056b3);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
        }

        .pricing-title {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        .pricing-price {
            font-size: 4rem;
            font-weight: bold;
            color: var(--text-black);
            margin-bottom: 5px;
        }

        .pricing-price-cents {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--text-black);
            margin-bottom: 5px;
        }

        .pricing-currency {
            font-size: 2.8rem;
            color: #666;
            margin-bottom: 30px;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0 0 40px;
        }

        .pricing-features li {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            color: #666;
            font-size: 1rem;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li i {
            color: var(--primary-blue);
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }

        .btn {
            border-radius: 25px;
            padding: 12px 30px;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            margin: 0 5px 10px;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }

        .hero-section-container {
            position: relative;
            overflow: hidden;
            color: white;
            padding: 120px 0;
            display: flex;
            align-items: center;
            background-position: center;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            filter: brightness(0.7);
            opacity: 0;
            transition: opacity 1s ease-in-out;
            z-index: 1;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-content-container {
            position: relative;
            z-index: 2;
            height: 100%;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            backdrop-filter: blur(1px);
        }

        .hero-content-container h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            /* text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5); */
            letter-spacing: -0.5px;
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7); /* Ombre plus prononcée */
            background: rgba(0, 0, 0, 0.4); /* Fond semi-transparent derrière le texte */
            padding: 1.2rem 0.5rem; /* Léger padding pour le fond */
            border-radius: 24px; /* Coins arrondis pour le fond */
        }

        .hero-content-container .lead {
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
            font-weight: 500;
            line-height: 1.5;
            background: rgba(0, 0, 0, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }

        .hero-content-container .container {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3; /* Assure que le conteneur est au-dessus du fond */
        }

        .features-section {
            padding: 20px 0;
        }

        .feature-card {
            text-align: center;
            padding: 40px 20px;
            border-radius: 15px;
            background: white;
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #f0f0f0;
            border-left: 4px solid var(--primary-blue);
            /* box-shadow: var(--shadow); */
            box-shadow: 0 40px 40px rgba(0, 0, 0, 0.1);
        }


        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(45deg, var(--primary-blue), #00F5F0);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
        }

        .feature-icon i {
            font-size: 2rem;
            color: white;
        }

        .feature-card h4 {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--primary-blue);
        }

        .feature-card p {
            color: #666;
            line-height: 1.8;
        }


        .features-section .container {
            padding-top: 0; /* Supprime le padding par défaut de Bootstrap */
            padding-bottom: 0;
            margin: 0;
        }

        .hero-content-container .row {
            width: 100%;
        }

        .btn-primary {
            /* background: linear-gradient(45deg, var(--primary-blue), var(--accent-yellow)); */
            background: linear-gradient(45deg, var(--primary-blue), #0056b3);
            border: none;
            color: white;
        }

        .info-section {
            padding: 60px 0;
            background: #f8f9fa;
        }

        .info-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
            border-left: 4px solid var(--primary-blue);
        }

        .info-card h4 {
            color: var(--primary-blue);
            font-weight: bold;
            margin-bottom: 15px;
        }

        .info-card p {
            color: #666;
            margin-bottom: 0;
            line-height: 1.7;
        }

        .footer-section {
            background: var(--dark);
            color: white;
            padding: 40px 0 20px;
        }

        .footer-social a {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            color: var(--accent-yellow);
            transform: translateY(-3px);
        }

        /* Animation sinusoidale verticale pour le logo */
        @keyframes smoothFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-3px);
            }
        }

        .logo-smooth-float {
            animation: smoothFloat 1.8s ease-in-out infinite;
            display: inline-block;
        }

        .warning-box {
            background: linear-gradient(135deg, #e6f0fa, #d0e6ff);
            border: 2px solid #a3bffa;
            border-radius: 15px;
            padding: 25px;
            margin: 25px 0;
            position: relative;
            box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
        }

        .warning-box::before {
            content: '⚠️';
            position: absolute;
            top: -32px;
            left: 25px;
            background: white;
            padding: 5px 10px;
            font-size: 1.8em;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
        }


        @media (max-width: 768px) {
            .bg-gradient-light {
                background: linear-gradient(180deg, #f8f9fa 8%, #d9dcef 80%) !important;
            }
            .page-header {
                padding: 8px 0 8px;
            }
            .page-header h1 {
                font-size: 2.2rem;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
                padding: 1.2rem 1rem;
            }

            .page-header p.lead {
                font-size: 1.2rem;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
            }

            .pricing-section {
                padding: 20px 0;
            }
            .pricing-card {
                margin-bottom: 20px;
            }
            .info-section {
                padding: 20px 0;
            }

            .hero-section-container {
                padding: 20px 0;
                margin: 0px 0px;
                background-attachment: scroll;
            }
            .hero-content-container h1 {
                font-size: 1.8rem;
                margin: 0.3rem 0;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
                padding: 1.2rem 1rem;
            }
            .hero-content-container p.lead {
                font-size: 1.1rem;
                margin: 0.3rem 0;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
                padding: 0.2rem 0.5rem;
            }

            .features-section {
                padding: 16px 0;
            }
            .cta-section {
                padding: 60px 0;
            }
            .cta-section h2 {
                font-size: 2rem;
            }

            .btn {
                display: block;
                width: 100%;
                margin: 0 0 15px;
            }
            .footer-section {
                text-align: center;
            }
        }

        .animate__animated {
            animation-duration: 1s;
            animation-fill-mode: both;
            visibility: visible !important; /* Assure que l'élément devient visible */
            opacity: 1 !important; /* Assure la pleine opacité */
        }

        .animate__fadeInUp {
            animation-name: fadeInUp;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate3d(0, 40px, 0);
            }
            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        .currency-selector a {
            text-decoration: none;  /* Pas de soulignage */
            color: #bbb;
        }

        .currency-selector a:visited {
            color: #bbb;  /* Même couleur pour les liens visités */
        }

        .currency-selector a:hover {
            color: #000;
        }

        .currency-selector a.active {
            font-weight: bold;  /* Devise courante en gras */
            color: #000;
        }

        .currency-selector .separator {
            color: #ccc;
            padding: 0 5px;
        }
/* Autres styles CSS */