.why-us-section{
    background:#f8f8f8;
}

.section-title{
    max-width:800px;
    margin:0 auto 70px;
}

.section-title span{
    color:#4d7c3d;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:42px;
    margin:15px 0;
    font-weight:700;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.why-box{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:15px;
    transition:.4s;
    height:auto;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.why-box:hover{
    transform:translateY(-10px);
}

.why-icon{
        display: flex;
    justify-content: center;
    align-items: center;
    width:75px;
    height:75px;
    line-height:75px;
    margin:auto;
    border-radius:50%;
    background:#4d7c3d;
    color:#fff;
    font-size:28px;
}

.why-box h4{
    margin:25px 0 15px;
}
.testimonial-section{
    background:#f8f9f7;
    padding:100px 0;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.testimonial-card{
    background:#fff;
    padding:40px 35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.active-card{
    border-top:5px solid #4d7c3d;
}

.quote-icon{
    font-size:42px;
    color:#4d7c3d;
    margin-bottom:25px;
}

.testimonial-card p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:30px;
    min-height:140px;
}

.client-info h4{
    font-size:20px;
    margin-bottom:5px;
    font-weight:600;
}

.client-info span{
    color:#4d7c3d;
    font-weight:500;
}

/* Tablet */

@media(max-width:991px){

    .testimonial-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:767px){

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .testimonial-card p{
        min-height:auto;
    }

}
.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    margin-bottom:20px;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,.05);
}

.faq-question{
    padding:25px 30px;
    font-size:20px;
    font-weight:600;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-question span{
    font-size:28px;
    transition:.4s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.4s ease;
    padding:0 30px;
    line-height:1.9;
    color:#666;
}

.faq-item.active .faq-answer{
    max-height:200px;
    padding:0 30px 30px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}