/* ===== FAQ Page ===== */
.faq-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    font-size: 16px;
    color: var(--secondary-color);
    text-align: left;
    cursor: pointer;
    font-weight: 500;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 25px 20px;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 15px;
        padding: 18px 20px;
    }
    .faq-answer-inner {
        padding: 0 20px 18px;
    }
}
