.faq-header-section {
    border-bottom: 1px solid #e9e9e9;
    background: #f8f9f9;
    padding: 20px 0;
}

.faq-header-container {
    margin: 0 6%;
}

.faq-header-title {
    font-size: 35px;
    font-weight: 700;
    color: #333;
}

@media screen and (max-width: 768px) {
    .faq-header-title {
        font-size: 28px;
    }
}



.faq-section {
    padding: 40px 0;
    margin: 0 6%;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 1rem;
    background-color: #6DAB3C;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease, color 0.3s ease;
}

.faq-question span{
    color: white;
}

/* .faq-item.active .faq-question span {
    color: #000;
} */

.faq-toggle-icon {
    font-size: 20px;
    margin-right: 1%;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-answer {
    padding: 2%;
    display: none;
    background-color: #fdfdfd;
    animation: fadeIn 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    display: block;
}

/* .faq-item.active .faq-toggle-icon {
    color: #000;
} */

.faq-answer img {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
    display: block;
}

.faq-answer p {
    font-size: 16px;
    font-family: Garamond, 'Times New Roman', serif;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .faq-section {
        padding: 1rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 0.75rem;
    }

    .faq-answer {
        font-size: 0.95rem;
        padding: 0.75rem;
    }
}

.centered-img {
    text-align: center;
}