.faq-section{
    background:#f8f9fa;
    padding:60px 20px;
}

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

.faq-container h2{
    text-align:center;
    margin-bottom:40px;
    font-size:28px;
    color:#111;
}

.faq-item{
    background:#ffffff;
    border-radius:8px;
    margin-bottom:15px;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
    overflow:hidden;
}

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

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

.faq-answer p{
    margin:15px 0;
    color:#555;
    font-size:15px;
}

.arrow{
    font-size:20px;
    color:#f0b90b;
}

.material-icons{
  font-size:18px;
  vertical-align:middle;
  margin-right:5px;
}

