/* === FAQ PAGE === */
.fp-faq-hero {
    padding: 2.5rem 1.5rem 1.5rem;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    margin-bottom: 2.5rem;
}

.fp-faq-title {
    color: #1a202c;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.fp-faq-subtitle {
    color: #718096;
    max-width: 520px;
    margin: 0.5rem auto 0;
}

.fp-faq-content {
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

/* Item */
.fp-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* Question button */
.fp-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    text-align: left;
    line-height: 1.4;
    transition: background 0.15s;
}

.fp-faq-question:hover {
    background: #f7fafc;
}

.fp-faq-icon {
    flex-shrink: 0;
    color: #a0aec0;
    font-size: 0.85rem;
    transition: transform 0.25s;
}

.fp-faq-question[aria-expanded="true"] .fp-faq-icon {
    transform: rotate(180deg);
    color: #e53e3e;
}

/* Answer */
.fp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.25rem;
}

.fp-faq-answer.is-open {
    max-height: 600px;
    padding: 0 1.25rem 1.25rem;
}

.fp-faq-answer p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.97rem;
}
