/* 
 * FAQ Section - Exact Replica
 * Exfiltrated computed styles from reference site.
 */

/* Import font if not enqueued in PHP, but we will enqueue in PHP for performance */
/* @import url('https://fonts.googleapis.com/css2?family=Anek+Telugu:wght@400;600&display=swap'); */

#faq-heading {
    /* Exact values for section header if needed, but assuming user meant the items */
}

/* The wrapper around each question */
.template-parts-homepage-faq article {
    border-bottom: 1px solid #eeeeee;
    /* Browser said 0.666px, usually 1px in CSS */
}

/* High Specificity Overrides */
html body .template-parts-homepage-faq .ac-accordion-trigger h3,
html body .template-parts-homepage-faq h3.font-sans,
body .ac-accordion-trigger h3 {
    font-family: "Anek Telugu", "Anek Telugu Fallback", system-ui, sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 28px !important;
    color: #000000 !important;
    letter-spacing: normal !important;
}

html body .template-parts-homepage-faq .ac-accordion-content p,
body .ac-accordion-content p {
    font-family: "Anek Telugu", "Anek Telugu Fallback", system-ui, sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    color: #555555 !important;
}

/* Force container padding reset */
html body .template-parts-homepage-faq .ac-accordion-trigger {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
}

/* The Question Button */
.ac-accordion-trigger {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
    background-color: transparent !important;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    border: none !important;
    outline: none !important;
}

/* The Question Text (H3) */
.ac-accordion-trigger h3 {
    font-family: "Anek Telugu", "Anek Telugu Fallback", system-ui, sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 28px !important;
    color: #000000 !important;
    margin: 0 !important;
    letter-spacing: normal !important;
}

/* The Answer Container */
.ac-accordion-content {
    /* Transition handled by Tailwind utility classes in HTML */
}

/* The Answer Text (P) */
.ac-accordion-content p {
    font-family: "Anek Telugu", "Anek Telugu Fallback", system-ui, sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
    color: #555555 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 24px !important;
    /* Visual gap at bottom of answer */
}

/* Icon Rotation */
.ac-accordion-trigger svg {
    color: #333333 !important;
    width: 16px !important;
    height: 16px !important;
}

/* Hover State */
.ac-accordion-trigger:hover h3 {
    opacity: 0.7;
    /* Approximate visual feedback */
}

.ac-accordion-trigger:hover span {
    background-color: #e5e5e5 !important;
}