.faq-section {
    padding: 20px 0px 50px 0px;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
    background-image: url(../images/faq-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.faq-section::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f0f0f0ab;
}

.faq .container {
    position: relative;
    z-index: 10;
}

.faq-heading {
    max-width: 700px;
    margin: auto;
    margin-bottom: 40px;
}

.faq-heading h5 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.faq-heading h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #111;
}

.faq-heading p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}
/* 
.faq-wrapper {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
} */
.faq-wrapper {
    width: 80%;
    margin: auto;
}
.faq-item {
    background: #022943;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    margin: 10px 0;
}

.faq-item.active {
    border-color: #6db807;
    box-shadow: 0 10px 30px rgba(109, 184, 7, 0.08);
}


.faq-question {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 20px;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #e0e0e0;
    line-height: 1.5;
}

.faq-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    transition: 0.3s ease;
}


.faq-item.active .faq-icon {
    background: #6db807;
    color: #fff;
    transform: rotate(45deg);
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 28px 24px;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #e8e8e8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-answer ul{
    padding: 0 40px;
    margin-bottom: 20px;
}
.faq-answer ul li{
    color: #fff;
    padding: 8px 0;
}
/*=========================
        Responsive
=========================*/

@media(max-width:768px) {

    .faq-section {
        padding: 70px 0;
    }

    .faq-heading h2 {
        font-size: 32px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 17px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}



@media (max-width: 992px){
    .faq-wrapper{
        width: 100% !important;
    }
}

@media (min-width: 992px) {

    @media (min-width: 768px) {
        .faq-section .blog__shape-item--1 {
            display: block;
            height: 80%;
            width: 1000px;
            top: -14%;
            left: -36%;
        }
    }

    .faq-section .blog__shape-item--1 {
        content: "";
        padding: 40px;
        border-radius: 100px 100px 229px 100px;
        transform: rotate(65deg);
        border: 2px solid #b8cfeb;
        border-top: transparent;
        display: none;
    }

}

@media (min-width: 768px) {
    .faq-section .blog__shape-item--1 span {
        top: 3%;
        left: -1%;
    }
}

.faq-section .blog__shape-item--1 span {
    position: absolute;
    content: "";
    height: 94%;
    width: 980px;
    border-radius: 100px 100px 236px 100px;
    background: linear-gradient(180deg, #ffffff38 0, #b8cfeb 100%);
    opacity: .6;
    z-index: 1000;
}

@media (min-width: 1400px) {
    .faq-section .blog__shape-item--1 {
        top: -17%;
        left: 0;
    }
}

@media (min-width: 1200px) {
    .faq-section .blog__shape-item--1 {
        height: 95%;
        top: -17%;
        left: -10%;
    }
}

@media (min-width:1200px) and (max-width:1399px) {
    .faq-heading h2 {
        font-size: 35px;
    }

    .faq-question h3 {
        font-size: 17px;
    }
}

@media (min-width:1901px) and (max-width:3000px) {
    .faq-heading h2 {
        font-size: 48px;
    }

    .faq-heading p {
        font-size: 22px;
    }

    .faq-question h3 {
        font-size: 22px;
    }

    .faq-answer p {
        font-size: 20px;
    }

    .faq-wrapper {
        max-width: 1168px;
    }
}
@media (max-width:990px) {
  .faq-section  .blog__shape{
    display: none;
  }
}