/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 16 2026 | 16:41:59 */
/* --- PERSONNALISATION FAQ ANAKEEN --- */

.schema-faq {
    max-width: 900px;
    margin: 0px auto;
}
.schema-faq-section strong:not(.schema-faq-answer strong) {
padding-right : 10%;
}
.schema-faq-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    border-left: 4px solid #2d5be3; /* Le bleu Anakeen */
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

/* Effet au survol */
.schema-faq-section:hover {
    box-shadow: 0 10px 20px rgba(45, 91, 227, 0.1);
    transform: translateY(-2px);
}

.schema-faq-question {
    padding: 22px 28px !important;
    margin: 0 !important;
    cursor: pointer;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #1a202c;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Icône personnalisée (chevron) */
.schema-faq-question::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232d5be3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

/* État actif */
.schema-faq-section.is-active {
    background: #fcfdfe;
}

.schema-faq-section.is-active .schema-faq-question::after {
    transform: rotate(180deg);
}

/* Style de la réponse */
.schema-faq-answer {
    display: none; /* Caché par défaut */
    padding: 0 28px 25px 28px;
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
    border-top: 1px solid #f0f4f8;
    padding-top: 15px;
}

.schema-faq-section.is-active .schema-faq-answer {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}