.why-us{
    padding:100px 20px;
    background:#F8FAFC;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    border-radius:22px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card img{
    width:80px;
    height:80px;
    object-fit:contain;
    margin-bottom:20px;
}

.why-card h3{
    color:#102A43;
    margin-bottom:15px;
    font-size:24px;
    font-weight:700;
}

.why-card p{
    color:#667085;
    line-height:1.8;
}

@media(max-width:991px){

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.why-grid{
    grid-template-columns:1fr;
}

}