.faq-home-section .card{
    border:none;
    margin-bottom:15px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
}

.faq-home-section .card-header{
    padding:0;
    background:#fff;
}

.faq-home-section .faq-btn{
    width:100%;
    text-align:left;
    padding:18px 25px;
    font-size:18px;
    font-weight:600;
    color:#222;
    background:#fff;
    border:none;
    position:relative;
    transition:.3s;
}

.faq-home-section .faq-btn:hover{
    background:#fff8f8;
}

.faq-home-section .faq-btn:after{
    content:'+';
    position:absolute;
    right:25px;
    top:50%;
    transform:translateY(-50%);
    font-size:28px;
    color:#e53935;
    font-weight:bold;
}

.faq-home-section .faq-btn[aria-expanded="true"]{
    background:#e53935;
    color:#fff;
}

.faq-home-section .faq-btn[aria-expanded="true"]:after{
    content:'−';
    color:#fff;
}

.faq-home-section .card-body{
    background:#fff;
    padding:20px 25px;
    color:#666;
    line-height:28px;
    font-size:15px;
}