.elementor-12 .elementor-element.elementor-element-3c4794a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-12 .elementor-element.elementor-element-3c4794a.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-widget-animated-headline .elementor-headline-plain-text{color:var( --e-global-color-secondary );}.elementor-widget-animated-headline .elementor-headline{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-animated-headline{--dynamic-text-color:var( --e-global-color-secondary );}.elementor-widget-animated-headline .elementor-headline-dynamic-text{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );}.elementor-widget-animated-headline .elementor-headline-dynamic-wrapper path{stroke:var( --e-global-color-accent );}.elementor-12 .elementor-element.elementor-element-ee5bfda{--iteration-count:infinite;margin:25px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;--dynamic-text-color:var( --e-global-color-ae2ed8c );}.elementor-12 .elementor-element.elementor-element-ee5bfda .elementor-headline{text-align:center;font-family:"Roboto", Sans-serif;font-weight:500;}.elementor-12 .elementor-element.elementor-element-ee5bfda .elementor-headline-plain-text{color:#C3BFBF;}.elementor-12 .elementor-element.elementor-element-ee5bfda .elementor-headline-dynamic-text{font-family:"Roboto", Sans-serif;font-weight:600;}:root{--page-title-display:none;}@media(max-width:1024px) and (min-width:768px){.elementor-12 .elementor-element.elementor-element-3c4794a{--width:833.667px;}}/* Start custom CSS for html, class: .elementor-element-012ba52 */.modal {
    display: none;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    max-height: 90%;
    background-color: #fff;
    color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
}

.modal.active {
    display: block; /* ✅ Assure que la modal s'affiche bien */
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.modal-overlay.active {
    display: block;
}


/* Hide scrollbar for Webkit browsers */
.modal::-webkit-scrollbar {
    display: none;
}
    /* Titre */
    .modal h2 {
        font-size: 2em; /* ✅ Légèrement agrandi pour une meilleure lisibilité */
        margin-bottom: 20px;
        color: #2C3E50;
        text-align: center;
    }

    /* Introduction */
    .modal-intro {
        font-size: 1em;
        color: #555;
        margin-bottom: 25px;
        text-align: center;
    }

    /* Logo centré */
    .modal-logo {
    display: block;
    margin: 10px auto; /* Center horizontally */
    width: 100px; /* Adjust size */
    height: auto;
}
    

    /* Étapes */
    .modal-steps {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .step {
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .step h3 {
        font-size: 1.4em; /* ✅ Rendre les titres plus visibles */
        color: #333;
        margin-bottom: 10px;
    }

    .step img {
        width: 100%;
        border-radius: 8px;
        margin: 15px 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .step p {
        font-size: 1em; /* ✅ Texte plus grand pour un meilleur confort de lecture */
        color: #555;
        line-height: 1.6;
    }

    /* Conclusion */
    .modal-conclusion {
        font-size: 1em;
        color: #555;
        margin-top: 25px;
        text-align: center;
    }

    /* Close Button */
    .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #D9534F; /* Professional Red */
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9em;
    cursor: pointer;
    z-index: 1000; /* Ensure it stays on top */
}

.close-btn:hover {
    background: #C9302C;
    transform: scale(1.1);
    transition: all 0.3s ease;
}/* End custom CSS */