/* Franchise FAQ Module */

.faq-module {
    max-width: 860px;
    margin: 0 auto;
}

.faq-heading {
    color: var(--color-brand);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: white;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    transition: background 0.2s ease, color 0.2s ease;
}

.faq-question:hover,
.faq-question--open {
    background: #f5f7fa;
    color: var(--color-brand);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    color: var(--color-brand);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform 0.2s ease;
}

.faq-answer {
    display: none;
}

.faq-answer-inner {
    padding: 1rem 1.5rem 1.4rem;
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.75;
    border-top: 1px solid #f0f0f0;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 0.97rem;
        padding: 1rem 1.2rem;
    }

    .faq-answer-inner {
        padding: 0.8rem 1.2rem 1.2rem;
    }
}
