/* ===== FAQ SECTION ===== */
#faq {
    width: 100%;
    margin: 0 auto;
    background: #000;
    padding: 40px 20px;
}

#faq h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #FFC800;
    font-weight: 600;
}

#faq .faq-item {
    width: 50%;
    margin: 0 auto;
    background: transparent;
    margin-top: 10px;
}

#faq .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    padding: 10px;
    font-size: 18px;
    color: #000;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.4s, color 0.4s;
    min-height: 70px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#faq .faq-question:hover {
    background: #f2f2f2;
    color: #007BFF;
}

#faq .faq-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    fill: #000;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

#faq .faq-item.active .faq-icon {
    transform: rotate(180deg);
}

#faq .faq-answer {
    background: #fff;
    border-radius: 15px;
    font-size: 16px;
    color: #000;
    margin-top: 15px;
    padding: 0 20px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.4s ease, padding 0.4s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#faq .faq-item.active .faq-answer {
    max-height: 2000px;
    opacity: 1;
    padding: 20px;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 768px) {
    #faq {
        padding: 30px 15px;
    }

    #faq .faq-item {
        width: 80%;
    }

    #faq .faq-question {
        font-size: 17px;
    }

    #faq .faq-answer {
        font-size: 15px;
    }

    #faq h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 480px) {
    #faq {
        padding: 20px 10px;
    }

    #faq .faq-item {
        width: 100%;
    }

    #faq .faq-question {
        font-size: 16px;
    }

    #faq .faq-answer {
        font-size: 14px;
    }

    #faq h2 {
        font-size: 24px;
    }
}