/* FAQ HERO SECTION */
.faq-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    padding: 150px;
    margin-top: -6rem;
    background: url('../images/hero-bg-3.png'), radial-gradient(85.94% 85.94% at 90.64% 7.81%, #FF9937 0%, #FE6A2E 89.5%);
    background-size: cover;
    background-position: center;
    border-bottom: 15px solid var(--Neutral-N900);
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.faq-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding-top: 4rem;
    width: 100%;
    max-width: 625px;
}

.faq-hero-container h1 {
    color: var(--Neutral-N900);
    font-family: Clash Display;
    font-size: 42px;
    font-weight: 600;
    line-height: 63px;
}

.faq-hero-container h1.second {
    line-height: 45px;
}

.faq-hero-container p {
    color: var(--Neutral-N900);
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

/* END OF FAQ HERO SECTION */

/* FAQ SECTION */
.faq-section {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    /* padding: 0px 0px 70px; */
}

.faq-container {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 80px;
    position: relative;
    top: -110px;
    background-color: var(--Neutral-N0);
    padding: 80px 140px;
    width: 1060px;
    border: 1px solid var(--Neutral-N900);
    border-radius: 50px;
    border-bottom: 15px solid var(--Neutral-N900);
}

.faq-container .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.faq-accordion .accordion-header {
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
    border-top: 1px solid var(--Neutral-N200);
}

.faq-accordion .accordion-header h2 {
    color: var(--Neutral-N900);
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
    max-width: 712px;
}

.accordion-header .acc-icon {
    background-image: url(../images/icons/chevron-down.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.accordion-header .acc-icon {
    cursor: pointer;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.accordion-content {
    max-height: 0;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq-accordion .active .accordion-header h2 {
    color: var(--Primary-300);
}

.faq-accordion .active .accordion-header .acc-icon {
    background-image: url(../images/icons/chevron-up.png) !important;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.faq-accordion .active .accordion-content {
    display: flex;
    gap: 16px;
    padding-bottom: 24px;
    max-height: 500px;
    max-width: 782px;
    opacity: 1;
    display: block;
    color: var(--Neutral-N600);
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.faq-container .need-help {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.faq-container .need-help h2 {
    color: var(--Neutral-N900);
    font-family: Clash Display;
    font-size: 36px;
    font-weight: 500;
    line-height: 118%;
    letter-spacing: -1%;
}

.faq-container .need-help .contacts {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.need-help .contacts div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.need-help .contacts div span {
    color: var(--Neutral-N900);
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    max-width: 315px;
}

.need-help .contacts div.left span {
    max-width: 254px;
}

.need-help .contacts div a {
    display: flex;
    gap: 12px;
    max-width: 235px;
    height: 44px;
    padding: 10px 24px;
    border: 1px solid var(--Neutral-N50);
    border-radius: 12px;
    color: var(--Neutral-N900);
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    text-decoration: none;
    cursor: pointer;
}

/* END OF FAQ SECTION */

/* MOBILE RESPONSIVE  */

@media only screen and (max-width: 1122px) {
    .faq-hero {
        padding: 100px 10px 130px;
    }

    .faq-hero-container {
        align-items: unset;
        text-align: unset;
    }

    .faq-hero-container h1 {
        font-size: 32px;
        line-height: 42px;
    }

    .faq-hero-container p {
        font-size: 16px;
        line-height: 24px;
    }

    .faq-container {
        padding: 80px 10px 60px;
        width: 100%;
        border-bottom: 10px solid var(--Neutral-N900);
    }

    .faq-container .need-help h2 {
        text-align: center;
    }

    .faq-container .need-help .contacts {
        flex-direction: column;
        gap: 20px;
    }

    .newsletter-container .content h1 {
        font-size: 36px;
        font-weight: 500;
    }
}

/* END OF MOBILE RESPONSIVE  */