.faq-section{
    padding: 80px 0;
    background:#f8f9fa;
}

.faq-item{
    margin-bottom:15px;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.faq-item:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.faq-question{
    width:100%;
    border:none;
    outline:none;
    background:#fff;
    padding:20px 25px;
    font-size:18px;
    font-weight:600;
    text-align:left;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    transition:0.3s;
}

.faq-question:hover{
    color:#fd7e14;
}

.faq-question span{
    font-size:24px;
    font-weight:bold;
    transition:0.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease;
    background:#fafafa;
}

.faq-answer p{
    padding:0 25px 20px;
    margin:0;
    line-height:1.8;
    color:#666;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}


