.franck-modele-faq-wrapper {
    width: 100%;
}

.franck-modele-faq {
    width: 100%;
    position: relative;
}

.fmfaq-header {
    max-width: 860px;
    margin: 0 auto 38px;
    padding: 0 24px;
}

.fmfaq-header h2 {
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin: 0 0 12px;
}

.fmfaq-header p {
    line-height: 1.6;
    margin: 0;
}

.fmfaq-list {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}

.fmfaq-item {
    background: var(--fmfaq-item-bg, #ffffff);
    border: 1px solid var(--fmfaq-border-color, #e5e7eb);
    border-radius: var(--fmfaq-item-radius, 22px);
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--fmfaq-shadow, none);
}

.fmfaq-question {
    width: 100%;
    min-height: 72px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    background: transparent;
    color: var(--fmfaq-question-color, #0f172a);
    font-size: 18px;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.fmfaq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--fmfaq-icon-color, #0f172a);
    background: rgba(15, 23, 42, 0.06);
    font-size: 22px;
    line-height: 1;
    transition: transform .25s ease;
}

.fmfaq-answer {
    display: none;
    color: var(--fmfaq-answer-color, #475569);
    font-size: 15px;
    line-height: 1.75;
    padding: 0 24px 24px;
}

.fmfaq-item.is-open .fmfaq-answer {
    display: block;
}

.fmfaq-item.is-open .fmfaq-icon {
    transform: rotate(45deg);
}

@media (max-width: 767px) {
    .fmfaq-header h2 {
        font-size: 32px !important;
    }

    .fmfaq-question {
        font-size: 16px;
        min-height: 64px;
        padding: 0 18px;
    }

    .fmfaq-answer {
        padding: 0 18px 20px;
    }
}