.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid;
}

.faq-question:hover {
    border-bottom: 1px solid #026473;
}

.faq-question-text  {
    color: #4a5568;
    font-size: 16px;
    font-weight: 500;
    flex: 1;
    margin-right: 15px;
}

.faq-question-text:hover  {
    color: #026473;
}

.faq-icon {
    font-size: 18px;
    transition: all 0.3s ease;
    user-select: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-icon-plus {
    color: #666;
    border-color: #666;
    border: 1px solid #666;
}

.faq-icon-plus:hover {
    color: #026473;
    border-color: #026473;
    border: 1px solid #026473;
}

.faq-icon-minus {
    color: #026473;
    border-color: #026473;
    border: 1px solid #026473;

}

.faq-answer {
    padding: 20px;
    background: white;
    display: none;
}

/* Styles pour le contenu WYSIWYG des FAQ */
.faq-answer-content {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Styles pour les questions (titre) */
.faq-question-text {
    color: #4a5568;
}
