.privacy-hero .phero-content h2 {
    color: var(--WHITE);
    text-align: center;
    font-family: Outfit;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: 78.5px;
    letter-spacing: -1.28px;
    text-transform: capitalize;
    width: 100%;
}

/* FAQ CONTENT SECTION */
.faq-section {
    display: inline-flex;
    padding: 54px 267px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.faq-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

.faq-categories {
    display: flex;
    width: 906px;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.faq-sub-cat {
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 16px;
    border-radius: 100px;
    border: 1px solid var(--Neutral-N40);
    color: var(--Neutral-N100);
    text-align: center;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.1px;
}

.faq-categories .active {
    color: var(--WHITE) !important;
    background: var(--MAIN-1) !important;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.faq-accordion .active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 40px;
}

.faq-accordion .active .accordion-header .acc-icon {
    border: 2px solid var(--WHITE) !important;
}

.faq-accordion .active .accordion-header {
    border-radius: 48px !important;
    background: var(--MAIN-1, ) !important;
    color: var(--WHITE) !important;
}

.faq-accordion .active .accordion-header span {
    color: var(--WHITE);
}

.faq-accordion .active .accordion-header .acc-icon {
    background-image: url(../images/icons/minus.svg) !important;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.faq-accordion .active .accordion-content {
    max-height: 500px;
    max-width: 782px;
    opacity: 1;
    display: block;
    color: var(--Neutral-N100);
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.accordion-header {
    display: flex;
    width: 863px;
    padding: 32px;
    justify-content: space-between;
    align-items: center;
    border-radius: 48px;
    border: 1px solid var(--Neutral-N50);
}

.accordion-header span {
    color: var(--BLACK);
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.accordion-header .acc-icon {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 12px 12.25px 12px 11.75px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 500px;
    border: 2px solid var(--Neutral-N50);
    background: var(--MAIN-1);
    background-image: url(../images/icons/plus.svg);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center;
}

.accordion-header .acc-icon img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.accordion-content {
    max-height: 0;
    /* Hidden by default */
    max-width: 0;
    overflow: hidden;
    /* Prevents content from being visible */
    opacity: 0;
    /* Initially invisible */
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.got-questions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-top: 7rem;
}

.got-questions h3 {
    color: var(--Electra-Black);
    text-align: center;
    font-family: Montserrat;
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: 72px;
    letter-spacing: -1.2px;
}

.got-questions p {
    color: var(--Electra-Black);
    text-align: center;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    width: 60%;
}

.shoot-us-mail {
    display: flex;
    padding: 16px 28px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid var(--MAIN-GRADIENTS);
    background: var(--MAIN-GRADIENTS);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    color: var(--WHITE);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    text-decoration: none;
}

/* END OF FAQ CONTENT SECTION */


/* MOBILE RESPONSIVE  */
@media only screen and (max-width: 1122px) {
    .faq-section {
        padding: 54px 20px;
    }

    .privacy-hero .phero-content h2 {
        font-size: 40px;
        line-height: 40px;
    }

    .faq-categories {
        width: 100%;
    }

    .faq-sub-cat {
        /* width: 100%; */
        padding: 8px;
        font-size: 14px;
    }

    .faq-accordion {
        width: 100%;
        align-items: unset;
    }

    .faq-accordion .active {
        align-items: unset;
    }

    .accordion-header {
        width: 100%;
        padding: 16px;
        gap: 12px;
    }

    .accordion-header span {
        font-size: 16px;
        line-height: 20px;
    }

    .accordion-header .acc-icon {
        width: 40px;
        height: 40px;
        padding: 10px;
    }

    .faq-accordion .active .accordion-content {
        font-size: 16px;
        line-height: 24px;
    }

    .got-questions {
        padding-top: 3rem;
    }

    .got-questions h3 {
        font-size: 30px;
        line-height: 32px;
    }

    .got-questions p {
        font-size: 16px;
        line-height: 24px;
        width: 100%;
    }
}


/* END OF MOBILE RESPONSIVE  */