  .highlight {
            background-color: #f9f9f9;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            height: 100%;
        }
        
        .highlight h2 {
            color: #0053a0;
            font-size: 1.75rem;
            margin-bottom: 20px;
        }
        
        .highlight ul {
            margin-bottom: 0;
        }
        
        .highlight li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .highlight em {
            color: #5cbf8c;
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .accent-text {
            color: inherit;
            transition: color 2s ease-in-out;
            background-color: transparent;
            padding: 0;
        }
        
        .accent-text.highlight {
            color: #5cbf8c; !important;
            background: none !important;
            background-color: transparent !important;
            box-shadow: none !important;
            padding: 0 !important;
        }
        
        .accent-text-yellow {
            color: #e9b109 !important;
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }
        
        .parallax-container {
            overflow: hidden;
            position: relative;
            border-radius: 15px;
        }
        
        /* Styles pour les caractéristiques avec tooltips */
        .pt-column-content {
            padding: 20px;
            list-style-type: none;
        }
        
        .pt-column-content li {
            margin-bottom: 15px;
            position: relative;
            padding: 5px 5px 5px 30px;
            transition: all 0.3s ease;
            cursor: help;
        }
        
        .pt-column-content li:before {
            content: "\f058";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--secondary-color);
        }
        
        .pt-column-content li:hover {
            background-color: #f0f0f0;
        }
        
        .pt-column-content li::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background-color: #333;
            color: white;
            padding: 10px;
            border-radius: 4px;
            font-size: 14px;
            width: 350px;
            max-height: 300px;
            overflow-y: auto;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            z-index: 1000;
            text-align: center;
            white-space: normal;
            word-wrap: break-word;
            margin-bottom: 5px;
        }
        
        .pt-column-content li:hover::after {
            opacity: 1;
            visibility: visible;
        }
        
        /* Styles pour la section des tarifs */
        .pricing-table {
            padding: 4rem 0;
            background-color: #fffc;
        }
        
        .pricing-card {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .pricing-header {
            background-color: var(--primary-color);
            color: white;
            padding: 1.5rem;
            text-align: center;
        }
        
        .pricing-header h3 {
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
        }
        
        .price {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .amount {
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        .period {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .pricing-options {
            padding: 1.5rem;
        }
        
        .option {
            margin-bottom: 1.5rem;
        }
        
        .option h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        .option p {
            color: var(--gray-color);
            margin-bottom: 1rem;
        }
        
        .option-divider {
            margin: 1.5rem 0;
            border-top: 1px solid var(--light-gray);
        }
        
        .pricing-detail {
            font-size: 0.9rem;
            font-style: italic;
            margin-bottom: 1rem;
        }
        
        .cta-button {
            display: block;
            width: 100%;
            padding: 0.75rem 1rem;
            border-radius: 6px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }
        
        .primary-bg {
            background-color: var(--secondary-color);
            color: white;
            border: none;
        }
        
        .primary-outline {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }
        
        .primary-bg:hover {
            background-color: var(--secondary-dark);
        }
        
        .primary-outline:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .featured {
            border: 2px solid #e9b109;
            position: relative;
        }
        
        .featured::before {
            content: 'Populaire';
            position: absolute;
            top: 0;
            right: 0;
            background-color: #e9b109;
            color: white;
            padding: 5px 10px;
            font-size: 12px;
            border-bottom-left-radius: 8px;
        }
        
        .quantity-selector {
            margin-bottom: 1rem;
        }
        
        .price-info {
            font-size: 0.9rem;
            color: var(--gray-color);
            margin-bottom: 0.5rem;
        }
        
        .total-price {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        
        .promotion-code {
            margin-bottom: 1rem;
        }
        
        .volume-pricing {
            list-style-type: disc;
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .volume-pricing li {
            margin-bottom: 0.5rem;
        }
        
        /* Styles pour les tooltips */
        .tooltip-container {
            position: relative;
            display: inline-block;
            cursor: help;
        }
        
        .tooltip-container {
            position: relative;
            display: inline-block;
            cursor: help;
            border-bottom: 1px dotted #5cbf8c;
        }
        
        .tooltip-container::after {
            content: "";
            display: none;
        }
        
        /* Style spécifique pour les tooltips de la section ACHAT EN LIGNE */
        .pricing-options .tooltip-container::after {
            content: "\f059";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            font-size: 14px;
            margin-left: 5px;
            color: #5cbf8c;
            opacity: 0.8;
            display: inline-block;
        }
        
        .tooltip-content {
            position: absolute;
            bottom: 130%;
            left: 0;
            transform: translateY(-10px);
            background-color: #fff;
            color: #333;
            padding: 15px;
            border-radius: 8px;
            white-space: normal;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            width: 280px;
            max-width: 90vw;
            box-sizing: border-box;
            font-size: 14px;
            text-align: left;
            box-shadow: 0 5px 20px rgba(92, 191, 140, 0.2);
            line-height: 1.5;
            overflow-wrap: break-word;
            word-break: break-word;
            overflow: hidden;
            border-left: 4px solid #5cbf8c;
            pointer-events: none;
        }
        
        .tooltip-container:hover .tooltip-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        

        
        /* Styles pour les boutons avec tooltips */
        .cta-button {
            position: relative;
        }
        
        .cta-button-tooltip {
            position: relative;
        }
        
        .cta-button-tooltip::after {
            content: "\f059";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            font-size: 14px;
            position: absolute;
            top: 10px;
            right: 10px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        /* Styles spécifiques pour les tooltips dans les options de prix */
        .pricing-options .tooltip-content {
            left: 0;
            right: auto;
        }
        
        /* Suppression du soulignement pour les tooltips avec icône */
        .pricing-options .tooltip-container {
            border-bottom: none;
        }
        
        /* Styles pour les listes avec tooltips */
        .pt-column-content li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
            background-color: transparent;
        }
        
        .pt-column-content li::before {
            content: "\f00c";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: #5cbf8c;
            background: none;
        }
        
        .pt-column-content .tooltip-container {
            border-bottom: none;
            background: transparent;
        }
        
        /* Fix pour éviter les barres indésirables */
        .tooltip-container, .tooltip-content {
            background-color: transparent;
        }
        
        .tooltip-content {
            background-color: #fff;
        }
        
        /* Suppression de la barre noire */
        .pt-column-content li::after {
            display: none;
        }
        
        /* Assurer que les tooltips s'affichent correctement */
        .pt-column-content li .tooltip-content {
            z-index: 1001;
            position: absolute;
            bottom: 130%;
            left: 0;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(92, 191, 140, 0.2);
            border-left: 4px solid #5cbf8c;
        }
        
        /* Styles pour les tooltips des boutons */
        .cta-button-tooltip .tooltip-content {
            bottom: calc(100% + 10px);
            top: auto;
            left: 0;
            right: auto;
            transform: translateY(-10px);
        }
        
        .cta-button-tooltip:hover .tooltip-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .cta-button:active {
            transform: scale(0.95);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            transition: transform 0.1s ease, background-color 0.1s ease, box-shadow 0.1s ease;
        }
        
        /* Styles pour les sections */
        .sig-section {
            padding: 5rem 0;
        }
        
        .sig-section-header {
            margin-bottom: 3rem;
        }
        
        .sig-section-subtitle {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .sig-section-description {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            color: #555;
        }
        
        /* Styles pour l'image héro */
        .sig-hero-image-container {
            position: relative;
            overflow: hidden;
        }
        
        .sig-hero-image {
            transition: transform 0.5s ease;
        }
        
        .sig-hero-image:hover {
            transform: scale(1.05);
        }
        
        /* Styles pour les conteneurs d'images avec effet parallaxe */
        .parallax-container {
            overflow: hidden;
            position: relative;
            border-radius: 0.5rem;
        }
        
        .parallax-container img {
            transition: transform 0.3s ease-out;
        }
        
        .parallax-container:hover img {
            transform: scale(1.05);
        }
        
        /* Styles pour le conteneur vidéo */
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* Ratio 16:9 */
            height: 0;
            overflow: hidden;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 0.5rem;
        }
        
        /* Style spécifique pour les YouTube Shorts (format vertical) */
        .youtube-short-container {
            position: relative;
            width: 100%;
            max-width: 350px; /* Largeur limitée pour garder l'aspect vertical */
            margin: 0 auto;
            padding-bottom: 177.78%; /* Ratio 9:16 pour format vertical */
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .youtube-short-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 15px;
        }
        .custom-bullet li {
            text-align: left;
        }

        .sig-section[style*="linear-gradient"] h2 {
            color: white;
        }

        .sig-hero {
            padding-top: 2rem;
            padding-bottom: 2rem;
        }
        .col-md-4.mb-4 {
            position: relative;
        }
    /* Hero section styles */
    .hero {
        background: #e4e9f2;
        color: #333;
        padding: 80px 20px;
        position: relative;
        overflow: hidden;
    }
    
    /* Styles améliorés pour les boutons */
    .btn {
        border-radius: 30px;
        padding: 12px 28px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        z-index: 1;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        z-index: -1;
    }
    
    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }
    
    .btn:hover::before {
        width: 100%;
    }
    
    .btn-primary {
        background-color: #5cbf8c; /* sigmund_vert */
        border-color: #5cbf8c;
    }
    
    .btn-primary:hover {
        background-color: #4da978;
        border-color: #4da978;
    }
    
    .btn-outline-primary {
        color: #5cbf8c; /* sigmund_vert */
        border-color: #5cbf8c;
        background-color: transparent;
    }
    
    .btn-outline-primary:hover {
        background-color: #5cbf8c;
        color: white;
    }
    
    .btn-success {
        background-color: #5cbf8c; /* sigmund_vert */
        border-color: #5cbf8c;
    }
    
    .btn-success:hover {
        background-color: #4da978;
        border-color: #4da978;
    }
    
    .btn-outline-success {
        color: #5cbf8c; /* sigmund_vert */
        border-color: #5cbf8c;
        background-color: transparent;
    }
    
    .btn-outline-success:hover {
        background-color: #5cbf8c;
        color: white;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.6;
    }
    
    .hero .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
        gap: 30px;
    }
    
    .hero-text {
        flex: 1 1 500px;
        margin-bottom: 20px;
        padding-right: 30px;
        animation: fadeInLeft 0.8s ease-out;
    }
    
    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .hero-image {
        flex: 1 1 400px;
        text-align: center;
        position: relative;
        animation: fadeInRight 0.8s ease-out;
    }
    
    .hero-image::before {
        content: '';
        position: absolute;
        width: 500px;
        height: 500px;
        /* Accentuation subtile : dégradé radial et opacité plus forte */
        background: radial-gradient(circle at 60% 40%, rgba(92,191,140,0.22) 60%, rgba(0,83,160,0.18) 100%);
        border-radius: 50%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        z-index: -1;
        animation: pulse 6s cubic-bezier(0.4,0,0.2,1) infinite;
        /* Pour compatibilité anciens navigateurs */
        /* background: rgba(92, 191, 140, 0.18); */
    }
    
    @keyframes pulse {
        0% {
            transform: translate(-50%, -50%) scale(0);
            opacity: 0;
        }
        30% {
            transform: translate(-50%, -50%) scale(1);
            opacity: 0.7;
        }
        100% {
            transform: translate(-50%, -50%) scale(1.3);
            opacity: 0;
        }
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
        transition: transform 0.5s ease;
        position: relative;
        z-index: 1;
    }
    
    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .sig-badge {
        display: inline-block;
        background: #5cbf8c;
        color: #fff;
        font-weight: 600;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 0.9rem;
        margin-bottom: 25px;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 10px rgba(92, 191, 140, 0.2);
        animation: fadeInDown 0.5s ease-out;
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Feature cards */
    .feature-card {
        background-color: #fff;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        height: 100%;
        transition: all 0.3s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }
    
    .feature-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background-color: rgba(0, 83, 160, 0.1);
        color: #0053a0;
        border-radius: 50%;
        margin-bottom: 20px;
        font-size: 24px;
    }
    
    /* Pricing section */
    .pricing-card {
        background-color: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        height: 100%;
    }
    
    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }
    
    .pricing-header {
        background-color: var(--primary-color);
        color: white;
        padding: 25px 20px;
        text-align: center;
    }
    
    .pricing-body {
        padding: 30px;
    }
    
    .pricing-features {
        margin-bottom: 25px;
    }
    
    .pricing-features li {
        margin-bottom: 12px;
        position: relative;
        padding-left: 28px;
    }
    
    .pricing-features li:before {
        content: "\f058";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        color: var(--secondary-color);
    }
    
    .highlight {
        background-color: #f9f9f9;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        height: 100%;
        transition: all 0.3s ease;
    }
    
    .highlight:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }
    
    .highlight h2 {
        color: #5cbf8c;
        font-size: 1.75rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 15px;
    }
    
    .highlight h2:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: #5cbf8c;
    }
        .lead.mb-4 strong {
            font-weight: 900;
        }