    .faq-wp-acf__intro {
        margin-bottom: 32px;
    }

    .faq-wp-acf__items {
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 0 16px;
    }

    .faq-wp-acf__item {
        border: 1px solid rgba(15, 23, 42, 0.12);
        border-radius: 18px;
        background: #ffffff;
        overflow: hidden;
        box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
    }

    .faq-wp-acf__question {
        width: 100%;
        border: 0;
        background: transparent;
        padding: 22px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        cursor: pointer;
        text-align: left;
        font-size: 18px;
        font-weight: 700;
        color: #151d2b;
    }

    .faq-wp-acf__question:hover {
        background: rgba(208, 255, 113, 0.12);
    }

    .faq-wp-acf__icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        border-radius: 999px;
        background: #f07b02;
        color: #0e0f11;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        line-height: 1;
        font-weight: 700;
        transition: transform 0.25s ease;
    }

    .faq-wp-acf__answer {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease;
    }

    .faq-wp-acf__answer-inner {
        color: #475569;
        font-size: 16px;
        line-height: 1.7;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        padding: 18px 24px 24px;
    }

    .faq-wp-acf__item.is-open .faq-wp-acf__answer {
        max-height: 500px;
        opacity: 1;
    }

    .faq-wp-acf__item.is-open .faq-wp-acf__icon {
        transform: rotate(45deg);
    }

    /* Dark mode si tu theme lo usa */
    .dark .faq-wp-acf__item {
        background: #151d2b;
        border-color: rgba(255, 255, 255, 0.08);
    }

    .dark .faq-wp-acf__question {
        color: #ffffff;
    }

    .dark .faq-wp-acf__question:hover {
        background: rgba(208, 255, 113, 0.08);
    }

    .dark .faq-wp-acf__answer-inner {
        color: #d1d7e0;
        border-top-color: rgba(255, 255, 255, 0.08);
    }
