/* FAQ Section Styles */
#faq {
    width: 100%;
    padding: 3% 5% 5% 5%;
    background: #0b073a;
}

#faq .p-title {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    color: #ffffff;
}

#faq .headline {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 50px;
    color: #ffffff;
    line-height: 92px;
}

#faq .subheadline {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #d5d1f4;
}

/* FAQ Container */
.faq-container {
    max-width: 70%;
}

/* FAQ Accordion Button */
.faq-accordion-ask {
    background: #1e125d;
    color: #ffffff;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    padding: 30px 20px 30px 30px;
    border-radius: 30px;
}

.faq-accordion-ask:hover {
    color: #ffffff;
}

.faq-accordion-ask .d-flex {
    gap: 10px;
}

.faq-accordion-ask span:first-child {
    flex: 1;
    text-align: left;
    word-wrap: break-word;
}

/* FAQ Answer */
.faq-accordion-answer {
    padding: 20px 10px 20px 10px;
    background: #5734c8;
    margin-top: 10px;
    border-radius: 0px 0px 30px 30px;
}

.faq-content {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    color: #ffffff;
    padding: 30px;
}

/* FAQ Toggle Icons */
.faq-toggle .faq-expanded {
    display: none;
}

.faq-toggle:not(.collapsed) .faq-collapsed {
    display: none;
}

.faq-toggle:not(.collapsed) .faq-expanded {
    display: inline-block;
}

.faq-toggle[aria-expanded="true"] .faq-collapsed {
    display: none;
}

.faq-toggle[aria-expanded="false"] .faq-expanded {
    display: none;
}

.faq-icon {
    font-size: 1.3rem;
    line-height: 1;
    vertical-align: middle;
}

.faq-icon-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    min-width: 24px;
}

/* Tablet Responsive (768px - 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    #faq {
        width: 100%;
        padding: 3% 5% 5% 5%;
        background: #0b073a;
        margin-top: 10%;
    }

    #faq .p-title {
        font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
            "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 28px;
        color: #ffffff;
    }

    #faq .headline {
        font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
            "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
        font-weight: 700;
        font-style: normal;
        font-size: 60px;
        color: #ffffff;
    }

    #faq .subheadline {
        font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
            "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 25px;
        color: #d5d1f4;
    }

    .faq-accordion-ask {
        background: #1e125d;
        color: #ffffff;
        font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
            "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 30px;
        padding: 50px 40px 50px 40px;
        border-radius: 30px;
    }

    .faq-accordion-ask:hover {
        color: #ffffff;
    }

    .faq-accordion-answer {
        padding: 10px;
        background: #5734c8;
        margin-top: -20px;
        border-radius: 0px 0px 30px 30px;
    }

    .faq-content {
        font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
            "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 27px;
        color: #ffffff;
        padding: 30px;
    }

    .faq-icon {
        font-size: 1rem;
    }
}

/* Mobile Responsive (max-width: 767px) */
@media (max-width: 767px) {
    #faq .p-title {
        font-size: 12px;
    }

    #faq .headline {
        font-size: 38px;
        line-height: 40px;
        margin-top: -20px !important;
    }

    #faq .subheadline {
        font-size: 14px;
        margin-top: -60px !important;
    }

    .faq-container {
        max-width: 90%;
    }

    .faq-accordion-ask {
        font-size: 14px;
        padding: 15px 15px 15px 20px !important;
        border-radius: 15px;
    }

    .faq-accordion-ask span {
        font-size: 14px !important;
        line-height: 1.4;
    }

    .faq-icon {
        font-size: 1.25rem !important;
    }

    .faq-accordion-answer {
        border-radius: 15px 15px 15px 15px;
    }

    .faq-accordion-answer .faq-content {
        margin-top: -10px;
        font-size: 14px;
    }

    .mt-sm-10 {
        margin-top: 10px !important;
    }
}
