.faq-accordion{
max-width:900px;
margin:auto;
}

.faq-item{
border-bottom:1px solid #e6e6e6;
}

.faq-question{
display:flex;
align-items:center;
justify-content:space-between;
padding:18px 20px;
cursor:pointer;
font-weight:600;
}

.faq-icon{
display:flex;
transition:transform .3s ease;
}

.faq-item.active .faq-icon{
transform:rotate(180deg);
}

.faq-answer{
height:0;
overflow:hidden;
transition:height .35s ease;
padding:0 20px;
}

.faq-answer-inner{
padding-bottom:20px;
}