/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f5f5f5;
}

.faq-container {
    margin: 60px auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-1px);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    cursor: pointer;
    border-bottom: 1px solid #e8f5e8;
    transition: all 0.3s ease;
}



.faq-question h3 {
    font-size: 18px;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 16px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: max-content;
    padding: 30px 0;
}

.faq-answer p {
    padding: 0 25px;
    margin: 0;
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.6;
}

.faq-answer ul{
    margin-left: 50px;
    margin-top: 10px;
}

.faq-answer ul li{
    list-style: disc;
    color: var(--light-text);
}

.letter-list ul li{
    list-style: lower-alpha;
}



.highlight {
    color: var(--primary-color);
}

@media screen and (max-width: 768px) {

    .faq-section {
        padding: 50px 0;
    }

    .faq-container {
        margin: 30px auto 0;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 15px;
        padding-right: 15px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 14px;
    }

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

}