.custom-faq-section{
padding:40px 20px;
}

.faq-header{
text-align:center;
margin-bottom:30px;
}

.faq-title{
font-size:34px;
font-family:serif;
}

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

.faq-list{
list-style:none;
padding:0;
border-top:1px solid #c7d0c7;
border-bottom:1px solid #c7d0c7;
}

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

.faq-accordion summary{
display:flex;
align-items:center;
justify-content:space-between;
padding:14px 0;
cursor:pointer;
font-weight:500;
}

.faq-icon{
width:20px;
height:20px;
transition:transform .3s ease;
}

.faq-accordion[open] .faq-icon{
transform:rotate(45deg);
}

.faq-answer{
overflow:hidden;
max-height:0;
transition:max-height .4s ease;
line-height:1.6;
font-size:15px;
padding-right:20px;
}