/* ========================================================
   EPMCA ELEMENTOR ADDON - FAQS SECTION STYLES
   Scoped directly to .epmca-faqs-sec
   ======================================================== */

.elementor-widget-epmca-faq-section,
.elementor-widget-epmca-faq-section .elementor-widget-container {
    width: 100%;
}

.epmca-faqs-sec {
    padding: 88px 0;
    background-color: #f8fafc;
/*     border-bottom: 1px solid #e2e8f0; */
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #0f172a;
}

.epmca-faqs-sec *,
.epmca-faqs-sec *::before,
.epmca-faqs-sec *::after {
    box-sizing: border-box;
}

.epmca-faqs-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.epmca-faqs-header {
    text-align: center;
    margin-bottom: 48px;
}

.epmca-faqs-header .epmca-h3-section-subtitle {
    margin: 0 auto;
}

.epmca-accordion-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.epmca-accordion-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.epmca-accordion-item.active {
    border-color: #34AAE6;
    box-shadow: 0 6px 18px rgba(52, 170, 230, 0.08);
}

.epmca-accordion-header {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.epmca-accordion-question {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.epmca-accordion-chevron {
    width: 18px;
    height: 18px;
    stroke: #64748b;
    transition: transform 0.3s ease, stroke 0.2s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.epmca-accordion-item.active .epmca-accordion-chevron {
    transform: rotate(180deg);
    stroke: #34AAE6;
}

.epmca-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 22px;
    color: #475569;
    font-size: 13.5px;
    line-height: 1.65;
}

.epmca-accordion-item.active .epmca-accordion-body {
    max-height: 500px;
    padding: 0 22px 20px 22px;
}

@media (max-width: 768px) {
    .epmca-faqs-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .epmca-faqs-sec {
        padding: 50px 0;
    }

    .epmca-faqs-header {
        margin-bottom: 32px;
    }

    .epmca-accordion-header {
        padding: 16px 18px;
        font-size: 14.5px;
    }

    .epmca-accordion-body {
        padding: 0 18px 16px 18px;
    }
}