/* ===============================
   FAQ SECTION
=================================*/
.faq-section{
    padding: 80px 20px;
    background: transparent;
    box-shadow: 0px 2px 15px rgba(0,0,0,0.06);
}

.faq-container{
    max-width: 800px;
    margin: auto;
}

.faq-title{
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #303153;
}

/* FAQ Item */
.faq-item{
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* Question Button */
.faq-question{
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #303153;
}

/* Icon */
.faq-icon{
    font-size: 1.2rem;
    transition: 0.3s ease;
}

/* Answer */
.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

.faq-answer p{
    padding-bottom: 18px;
    font-size: 0.95rem;
    color: #555;
}

/* Active State */
.faq-item.active .faq-answer{
    max-height: 200px;
}

.faq-item.active .faq-icon{
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 600px){
    .faq-title{
        font-size: 1.6rem;
    }

    .faq-question{
        font-size: 0.95rem;
    }
}