.faq-page{

    position: relative;

    padding: 180px 0 120px;

    background: #f8f9fa;

    overflow: hidden;

}

#particles-js{

    position: absolute;

    inset: 0;

    z-index: 0;

}

.faq-page .container{

    position: relative;

    z-index: 2;

}

.faq-hero{

    margin-bottom: 80px;

}

.faq-hero h1{

    font-size: 72px;
    font-weight: 800;

    color: #1D3557;

    margin: 20px 0;

}

.faq-hero p{

    max-width: 850px;

    margin: auto;

    line-height: 1.9;

    color: #6c757d;

}

.faq-wrapper{

    max-width: 950px;

    margin: auto;

}

.faq-item{

    background: rgba(255,255,255,0.85);

    backdrop-filter: blur(12px);

    border-radius: 30px;

    margin-bottom: 25px;

    overflow: hidden;

    box-shadow: 0 15px 60px rgba(0,0,0,0.08);

    transition: 0.4s ease;

}

.faq-item:hover{

    transform: translateY(-6px);

}

.faq-question{

    padding: 35px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;

}

.faq-question h3{

    font-size: 24px;
    font-weight: 700;

    color: #1D3557;

}

.faq-question span{

    font-size: 34px;
    font-weight: 700;

    color: #F7E887;

}

.faq-answer{

    max-height: 0;

    overflow: hidden;

    transition: 0.4s ease;

}

.faq-answer p{

    padding: 0 40px 35px;

    color: #6c757d;

    line-height: 1.9;

}

.faq-item.active .faq-answer{

    max-height: 300px;

}

.faq-cta{

    margin-top: 120px;

}

.faq-cta h2{

    font-size: 54px;
    font-weight: 800;

    color: #1D3557;

}

.faq-cta p{

    margin: 20px 0 35px;

    color: #6c757d;

}

.btn-faq{

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 40px;

    border-radius: 60px;

    background:
    linear-gradient(
        135deg,
        #F7E887,
        #1D3557
    );

    color: #fff;

    font-weight: 700;

}

@media(max-width:768px){

    .faq-hero h1{

        font-size: 42px;

    }

    .faq-question{

        padding: 30px;

    }

    .faq-question h3{

        font-size: 20px;

    }

}