/* ============================================
   FAQ Page Styles - WellFemme Theme
   ============================================ */

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

/* Inner Banner - FAQ Page */
.inner-banner.bg-img {
    min-height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center !important;
    background-size: cover !important;
}

.inner-banner:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    opacity: 0.3;
}

.page-header {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    text-align: center;
    color: #FFF;
    font-size: 46px;
    line-height: 52px;
    margin-bottom: 20px;
}

ul.bredcrumb {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.bredcrumb li {
    display: inline-block;
    color: rgb(255 255 255);
    font-size: 14px;
    position: relative;
    padding-right: 16px;
    line-height: 13px;
}

ul.bredcrumb li a {
    color: rgb(255 255 255);
    text-decoration: none;
}

ul.bredcrumb li:before {
    content: "";
    height: 100%;
    width: 1px;
    background: rgb(255 255 255);
    position: absolute;
    right: 5px;
    transform: rotate(25deg);
}

ul.bredcrumb li:last-child:before {
    display: none;
}

/* FAQ Intro Section */
.faq-intro-section {
    background-color: #1B7895;
    padding: 50px 0;
}

.faq-intro-section .support-text h2 {
    /* font-size: 48px; */
    /* line-height: 56px; */
    /* margin-bottom: 0; */
    /* color: #FFF; */
}

.faq-intro-section .support-text p {
    margin-left: 40px;
    font-size: 18px;
    line-height: 28px;
    color: #FFF;
}

/* FAQ Main Section */
.faq-sec-no-overlap {
    background: #fbfaf9;
}

.bg-light-solid {
    background-color: #fbfaf9;
}

.faq-section-col {
    width: 70%;
    padding: 40px;
}
.faq-page-sec {
    padding: 50px 0px 230px;
    margin-bottom: -233px;
}
.head-row {
    margin-bottom: 40px;
}

.faq-section-title {
    text-align: left;
    color: #1B7895;
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 48px;
}

/* Custom Accordion Styles */
.custom-accordion .accordion-item {
    margin-bottom: 12px;
    border: none;
    border-radius: 8px !important;
    overflow: hidden;
    background: #fcfaf9;
}

.custom-accordion .accordion-button {
    line-height: 28px;
    font-weight: 600;
    color: #1B7895;
    background-color: #D6CFC22E;
    border: none !important;
    box-shadow: none;
    padding: 16px 35px;
    border-radius: 8px !important;
    font-size: 19px;
    min-height: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "proxima-nova", sans-serif;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    display: none;
}

 

.accordion-button .right-icon img {
    width: 12px;
    height: 12px;
    filter: brightness(0) invert(1);
}

button.accordion-button:not(.collapsed) .right-icon {
    transform: rotate(-90deg);
    background: #FABAAB;
}

.custom-accordion .accordion-body {
    color: #333;
    background: transparent;
    border-top: 0;
    padding: 15px 35px 20px;
    font-size: 16px;
    line-height: 28px;
}

/* FAQ Divider */
.faq-divider {
    width: 66%;
    margin: 40px auto;
    height: 1px;
    background: #E6E1DA;
}

/* CTA Section */
.cta-section {
    margin: 60px 0;
}

.cta-details {
    min-height: 587px;
    display: flex;
    justify-content: space-between;
    padding: 100px;
    align-items: flex-end;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.cta-details:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.cta-content {
    color: white;
}

.cta-content h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 5px;
    color: white;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 0;
    color: white;
}

.cta-button .btn {
    background-color: #4DC0B5;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    display: inline-block;
}

.cta-button .btn:hover {
    background-color: #37adad;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet & Below (< 768px) */
@media (max-width: 768px) {
    .inner-banner.bg-img {
        min-height: 450px;
    }

    .page-header h1 {
        font-size: 36px;
        line-height: 42px;
    }

    .faq-intro-section {
        padding: 80px 0;
    }

    .faq-intro-section .support-text h2 {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 20px;
    }

    .faq-intro-section .support-text p {
        margin-left: 0;
        font-size: 16px;
        line-height: 26px;
    }

    .faq-section-col {
        width: 85%;
        padding: 30px 20px;
    }

    .faq-section-title {
        font-size: 30px;
        line-height: 38px;
    }

    .custom-accordion .accordion-button {
        font-size: 17px;
        padding: 14px 25px;
        min-height: 70px;
    }

    .accordion-button .right-icon {
        margin-left: 15px;
        width: 22px;
        height: 22px;
    }

    .custom-accordion .accordion-body {
        padding: 15px 25px 20px;
        font-size: 15px;
        line-height: 26px;
    }

    .cta-details {
        min-height: 450px;
        padding: 60px 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-content h3 {
        font-size: 20px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .faq-divider {
        width: 80%;
        margin: 30px auto;
    }

    .container {
        padding: 35px !important;
    }
}

/* Mobile (< 640px) */
@media (max-width: 640px) {
    .sec-space {
        padding: 60px 0;
    }

    .inner-banner.bg-img {
        min-height: 380px;
    }

    .page-header h1 {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 15px;
    }

    ul.bredcrumb li {
        font-size: 12px;
        padding-right: 12px;
    }

    .faq-intro-section {
        padding: 60px 0;
    }

    .faq-intro-section .support-text h2 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 15px;
    }

    .faq-intro-section .support-text p {
        font-size: 15px;
        line-height: 24px;
        margin-left: 0;
    }

    .faq-section-col {
        width: 100%;
        padding: 20px 0;
        margin-top: -30px;
    }

    .head-row {
        padding: 20px 0;
        margin-bottom: 4px;
    }

    .faq-section-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 12px;
    }

    .custom-accordion .accordion-button {
        font-size: 16px;
        padding: 14px 20px;
        min-height: 60px;
        line-height: 24px;
    }

    .accordion-button .right-icon {
        margin-left: 12px;
        width: 20px;
        height: 20px;
    }

    .accordion-button .right-icon img {
        width: 10px;
        height: 10px;
    }

    .custom-accordion .accordion-body {
        padding: 12px 20px 18px;
        font-size: 14px;
        line-height: 24px;
    }

    .custom-accordion .accordion-item {
        margin-bottom: 10px;
    }

    .faq-divider {
        width: 90%;
        margin: 25px auto;
    }

    .cta-section {
        margin: 40px 0;
    }

    .cta-details {
        min-height: auto;
        padding: 40px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .cta-content h3 {
        font-size: 18px;
        margin-bottom: 3px;
    }

    .cta-content h2 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 8px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-button .btn {
        padding: 12px 25px;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }

    .faq-divider {
        display: none;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    .inner-banner.bg-img {
        min-height: 320px;
    }

    .page-header h1 {
        font-size: 24px;
        line-height: 30px;
    }

    .faq-intro-section {
        padding: 50px 0;
    }

    .faq-intro-section .support-text h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .faq-intro-section .support-text p {
        font-size: 14px;
        line-height: 22px;
    }

    .faq-section-title {
        font-size: 22px;
        line-height: 30px;
    }

    .custom-accordion .accordion-button {
        font-size: 15px;
        padding: 12px 15px;
        min-height: 55px;
    }

    .accordion-button .right-icon {
        margin-left: 10px;
        width: 18px;
        height: 18px;
    }

    .custom-accordion .accordion-body {
        padding: 10px 15px 15px;
        font-size: 14px;
        line-height: 22px;
    }

    .cta-details {
        padding: 30px 20px;
        gap: 20px;
    }

    .cta-content h3 {
        font-size: 16px;
    }

    .cta-content h2 {
        font-size: 20px;
        line-height: 26px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-button .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Extra Small Devices (< 400px) */
@media (max-width: 399px) {
    .page-header h1 {
        font-size: 22px;
        line-height: 28px;
    }

    .faq-intro-section .support-text h2 {
        font-size: 22px;
        line-height: 28px;
    }

    .faq-section-title {
        font-size: 20px;
        line-height: 28px;
    }

    .custom-accordion .accordion-button {
        font-size: 14px;
        padding: 10px 12px;
        min-height: 50px;
    }

    .custom-accordion .accordion-body {
        font-size: 13px;
        line-height: 20px;
    }
}