#faq {
    background: var(--bg);
}
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.7rem;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}
.faq-item:hover {
    border-color: var(--border-hover);
}
.faq-question {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    gap: 1rem;
}
.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-light);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.faq-item.open .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.45s ease;
    padding: 0 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.2rem;
}
