
.pp-faq-split{
    padding:20px 20px;
   background:linear-gradient(135deg,#0a1f44,#ffffff);
}

/* WRAPPER */
.pp-faq-wrapper{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

/* LEFT FAQ */
.pp-faq-item{
    background:#fff;
    margin-bottom:12px;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.pp-faq-question{
    width:100%;
    padding:15px 18px;
    border:none;
    background:#fff;
    text-align:left;
    font-weight:600;
    cursor:pointer;
    position:relative;
}

.pp-faq-question::after{
    content:"+";
    position:absolute;
    right:20px;
}

.pp-faq-item.active .pp-faq-question::after{
    content:"−";
}

.pp-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:0.4s;
    padding:0 18px;
}

.pp-faq-answer p{
    padding:12px 0;
    color:#555;
}

.pp-faq-item.active .pp-faq-answer{
    max-height:150px;
}

/* RIGHT TEXT */
.pp-faq-right p{
    color:#fff;
    line-height:1.9;
    margin-bottom:15px;
        font-family:'Roboto';
}

/* BUTTON */
.pp-btn{
    display:inline-block;
    padding:12px 25px;
    background:#114797;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

/* TITLE STYLE (YOUR STYLE) */
.bmfaq-titlest{
    color:#0a1f44;
    margin-bottom:10px;
    font-size:25px;
    font-weight:700;
    font-family:'Oswald', sans-serif;
}

.bmfaq-titlest span{
    color:#e60023;
}

.bmfaq-titlest::after{
    content:"";
    width:80px;
    height:4px;
    background:#e60023;
    display:block;
    margin:10px 0;
    border-radius:5px;
}

/* MOBILE */
@media(max-width:768px){
    .pp-faq-wrapper{
        grid-template-columns:1fr;
    }

    .bmfaq-titlest{
        text-align:center;
    }

    .bmfaq-titlest::after{
        margin:10px auto;
    }
}