
/* faq section css  */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 5rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h3 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.faq-header label{
    color: #eb9000;
}

.faq-header p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
}

.faq-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
}

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

.question-text {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    color: #eb9000;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease, background 0.3s ease;
    border-radius: 50%;
    background: #fff3e0;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
    background: #ffe0b2;
    color: #e64a19;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: white;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 600px) {
    .faq-header h1 {
        font-size: 2rem;
    }

    .faq-header p {
        font-size: 1rem;
    }

    .faq-question {
        padding: 16px 16px;
        font-size: 1rem;
    }

    .question-text {
        padding-right: 12px;
    }

    .faq-answer.active {
        padding: 0 16px 16px 16px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}
