.faq-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem 2rem 3rem;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: .85rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: .95rem;
    font-weight: 700;
    color: var(--dark);
}

.faq-question .faq-caret {
    flex-shrink: 0;
    transition: transform .2s;
    color: var(--primary);
}
.faq-item.open .faq-question .faq-caret { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}
.faq-answer-inner {
    padding: 0 1.4rem 1.25rem;
    color: var(--text2);
    font-size: .9rem;
    line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 800px; }
