.faqsCont{
    min-height: 100vh;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.faqsCont::before,
.faqsCont::after{
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}

.faqsCont::before{
    width: 22rem;
    height: 22rem;
    background: rgba(219, 197, 107, 0.18);
    top: 2rem;
    left: -6rem;
}

.faqsCont::after{
    width: 20rem;
    height: 20rem;
    background: rgba(137, 199, 201, 0.18);
    right: -5rem;
    bottom: 2rem;
}

.faqsCont .faqHeading,
.faqsCont .faqWrap{
    position: relative;
    z-index: 1;
}

.faqsCont .faqHeading{
    max-width: 900px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.faqsCont .textSup{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .5rem 1rem;
    border-radius: 3rem;
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(219, 197, 107, 0.4);
    color: #8f7b2b;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 18px rgba(0, 38, 70, 0.08);
}

.faqsCont h1{
    font-size: clamp(2rem, 4vw, 3.6rem);
    color: #1b2430;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: .8rem;
}

.faqsCont .textDesc{
    font-size: 1rem;
    color: #5f6c78;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto;
}

.faqsCont .faqWrap{
    max-width: 980px;
    margin: 2.8rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faqsCont .faqItem{
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: rgba(255,255,255,0.52);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.65);
    box-shadow:
        0 12px 30px rgba(0, 38, 70, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.6);
}

.faqsCont .faqItem::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: .35rem;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), #89c7c9);
    opacity: .85;
}

.faqsCont .faqQuestion{
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    cursor: pointer;
    padding: 1.35rem 1.4rem 1.35rem 1.6rem;
}

.faqsCont .faqQuestion span{
    font-size: 1.05rem;
    color: #1f2a35;
    font-weight: 650;
    line-height: 1.55;
}

.faqsCont .faqQuestion .iconPlus{
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.75);
    color: var(--accent);
    border: 1px solid rgba(219, 197, 107, 0.28);
    box-shadow: 0 6px 14px rgba(0,0,0,.06);
    font-size: .95rem;
}

.faqsCont .faqAnswer{
    max-height: 0;
    overflow: hidden;
    padding: 0 1.4rem 0 1.6rem;
}

.faqsCont .faqAnswer p{
    color: #55616c;
    font-size: .98rem;
    line-height: 1.9;
    padding: 0 0 1.45rem 0;
}

.faqsCont .faqItem.active{
    background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.5));
    border-color: rgba(219, 197, 107, 0.45);
    box-shadow:
        0 14px 40px rgba(219, 197, 107, 0.12),
        0 12px 30px rgba(0, 38, 70, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.7);
}

.faqsCont .faqItem.active .faqQuestion{
    background: linear-gradient(180deg, rgba(219, 197, 107, 0.07), rgba(255,255,255,0));
}

.faqsCont .faqItem.active .faqQuestion .iconPlus{
    transform: rotate(45deg) scale(1.04);
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

@media(max-width: 992px){
    .faqsCont{
        margin-top: 4rem;
    }
}

@media(max-width: 768px){
    .faqsCont .faqHeading{
        text-align: left;
    }

    .faqsCont .textDesc{
        margin: 0;
    }

    .faqsCont .faqWrap{
        margin-top: 2rem;
    }

    .faqsCont .faqQuestion{
        padding: 1.1rem 1rem 1.1rem 1.2rem;
        align-items: flex-start;
    }

    .faqsCont .faqQuestion span{
        font-size: .98rem;
    }

    .faqsCont .faqAnswer{
        padding: 0 1rem 0 1.2rem;
    }

    .faqsCont .faqAnswer p{
        font-size: .94rem;
        line-height: 1.8;
        padding-bottom: 1.1rem;
    }

    .faqsCont .faqQuestion .iconPlus{
        width: 2.15rem;
        height: 2.15rem;
        font-size: .85rem;
    }
}