#hero{
    background-color: #F1FFEF;
    padding: 60px 5px;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .text{
    max-width: 1300px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.text h2{
    color: #025836;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 10px;
}
.text p{
    max-width: 500px;
}

.faq-section {
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif;
}
.container{
    margin-top: 50px;
}

.faq-item {
    background-color: #fff;
    border-radius: 4px;
    padding: 1rem;
    border: 1px solid #025836;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 1000px;
    margin: auto;
}

.FAQ {
    color: #025836;
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-question {
    font-weight: 600;
    font-size: 1rem;
    color: #025836;
}

.faq-icon {
    font-size: 2rem;
    font-weight: 400;
    margin-left: 1rem;
    color: #025836;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #025836;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* adjust based on content length */
}


.faq-item.active .faq-icon {
    color: black;
}