.faq-section{
padding:100px 0;
background:#f7f7fb;
font-family:'Inter',sans-serif;
}

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

.faq-title{
text-align:center;
font-size:34px;
margin-bottom:60px;
font-weight:700;
}

.faq-item{
background:white;
border-radius:10px;
margin-bottom:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
overflow:hidden;
}

.faq-question{
width:100%;
padding:20px 25px;
border:none;
background:none;
font-size:17px;
font-weight:600;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
}

.faq-question:hover{
background:#f3f3f7;
}

.icon{
font-size:20px;
transition:0.3s;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height 0.35s ease;
padding:0 25px;
}

.faq-answer p{
padding-bottom:20px;
color:#666;
line-height:1.6;
}