.why-us{
    padding:80px 0;
    background:#f8fafc;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#1b1b1b;
    margin-bottom:15px;
}

.section-title h2 span{
    color:#0d8b6f;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:28px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    border-radius:18px;
    padding:35px 30px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
    border-top:4px solid transparent;
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:#0d8b6f;
    box-shadow:0 18px 35px rgba(0,0,0,.12);
}

.why-icon{
    width:75px;
    height:75px;
    line-height:75px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#0d8b6f;
    color:#fff;
    font-size:32px;
    transition:.3s;
}

.why-card:hover .why-icon{
    transform:rotate(8deg) scale(1.08);
}

.why-card h3{
    font-size:24px;
    font-weight:600;
    margin-bottom:15px;
    color:#222;
}

.why-card p{
    color:#666;
    font-size:16px;
    line-height:28px;
}

@media(max-width:768px){

.section-title h2{
    font-size:30px;
}

.why-us{
    padding:60px 0;
}

.why-card{
    padding:30px 25px;
}

}