/* ===================================================================
   FAQ Accordion
   Block: floresta/faq-accordion
   Template part: template-parts/faq-accordion.php
   Extracted from embedded <style> block in faq-accordion.php
   =================================================================== */

html body .faq-accordion-section {
    padding: 80px 0;
    background: #f5f5f5;
}

html body .faq-accordion-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #1e4620;
    margin-bottom: 40px;
    text-align: center;
}

html body .faq-accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

html body .faq-accordion-item {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

html body .faq-accordion-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

html body .faq-accordion-header {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
}

html body .faq-accordion-header:hover {
    background-color: #f9f9f9;
}

html body .faq-accordion-header[aria-expanded="true"] {
    background-color: #f0f7f1;
}

html body .faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #267a2b;
    line-height: 1.4;
    flex: 1;
}

html body .faq-toggle-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #267a2b;
    transition: transform 0.3s ease;
}

html body .faq-accordion-header[aria-expanded="true"] html body .faq-toggle-icon {
    transform: rotate(180deg);
}

html body .faq-accordion-content {
    overflow: hidden;
}

html body .faq-accordion-content[hidden] {
    display: none;
}

html body .faq-answer {
    padding: 0 28px 28px 28px;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

html body .faq-answer p {
    margin: 0;
}

@media (max-width: 768px) {
    html body .faq-accordion-section {
        padding: 60px 20px;
    }

    html body .faq-accordion-header {
        padding: 20px;
    }

    html body .faq-question {
        font-size: 16px;
    }

    html body .faq-answer {
        padding: 0 20px 20px 20px;
        font-size: 15px;
    }
}
