/* FAQ ACCORDION */
.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    font-weight: 600;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #2b2d42;
    /* var(--text-dark) hardcoded if variable not avail in this scope */
}

.faq-toggle-icon {
    font-size: 1.2rem;
    color: #f3722c;
    /* var(--primary-orange) */
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fff;
    padding: 0 1.5rem;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    opacity: 1;
    max-height: 500px;
    /* Arbitrary max-height for transition */
}