
body{
font-family: 'Montserrat', 'sans-serif';
line-height:1.5;
}

/*================ FAQ =================*/
.faq-section{
padding:100px 8%;
background:#4d0505;
}

.faq-container{
max-width:900px;
margin:auto;
}

.faq-title{
text-align:center;
margin-bottom:60px;
}

.faq-title span{
display:inline-block;
padding:10px 22px;
border-radius:1px;
background:#e8f2ff;
color:#4d0505;
font-weight:600;
font-size:14px;
letter-spacing:1px;
margin-bottom:20px;
}

.faq-title h2{
font-size:42px;
margin-bottom:18px;
color:#ffffff;
}

.faq-title p{
color:#ffffff;
font-size:18px;
}

.faq-card{
background:#ffffff;
border-radius:1px;
box-shadow:0 8px 25px rgba(0,0,0,.06);
margin-bottom:20px;
overflow:hidden;
transition:.3s;
}

.faq-card:hover{
transform:translateY(-3px);
}

.faq-question{
width:100%;
border:none;
background:none;
padding:28px 30px;
font-size:20px;
font-weight:600;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
color:#0d1b2a;
text-align:left;
}

.faq-icon{
font-size:28px;
font-weight:300;
transition:.3s;
color:#0b63ce;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:all .4s ease;
padding:0 30px;
}

.faq-answer p{
padding-bottom:30px;
color:#5b6675;
line-height:1.8;
font-size:16px;
}

.faq-card.active .faq-answer{
max-height:300px;
}

.faq-card.active .faq-icon{
transform:rotate(45deg);
}


/*========= Responsive ========*/
@media(max-width:768px){

.faq-section{
padding:70px 6%;
}

.faq-title h2{
font-size:32px;
}

.faq-question{
font-size:18px;
padding:22px;
}

}