/* FAQ Accordion Styling */
#sectionFaq, #sec-faq {
    margin-top: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 24px;
    border: 1px solid #f1f3f5;
    transition: all 0.3s ease;
}

#sec-faq {
    margin: 16px 0;
    padding: 16px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.faq-item {
    border: 1px solid #eaecef;
    border-radius: 8px;
    overflow: hidden;
    background: #fafbfc;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active {
    border-color: #ff5d1a;
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(255, 93, 26, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    gap: 12px;
}

.faq-q-icon {
    font-weight: 800;
    font-size: 1.1rem;
    color: #ff5d1a;
    background: #ffebe3;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-q-text {
    flex-grow: 1;
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    line-height: 1.5;
}

.faq-arrow {
    color: #868e96;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: #ff5d1a;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* higher threshold to avoid cut-off */
}

.faq-a-inner {
    display: flex;
    padding: 0 20px 20px 20px;
    gap: 12px;
    border-top: 1px dashed #eaecef;
    padding-top: 16px;
}

.faq-a-icon {
    font-weight: 800;
    font-size: 1.1rem;
    color: #2b8a3e;
    background: #ebfbee;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-a-text {
    flex-grow: 1;
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    #sectionFaq, #sec-faq {
        margin: 16px 0;
        padding: 16px;
    }
    .faq-question {
        padding: 14px 16px;
    }
    .faq-a-inner {
        padding: 0 16px 16px 16px;
        padding-top: 14px;
    }
    .faq-q-text {
        font-size: 0.95rem;
    }
    .faq-a-text {
        font-size: 0.9rem;
    }
}
