.why-section{

    background:#f8fafc;
}

.section-title{

    text-align:center;

    font-size:2.5rem;

    font-weight:700;

    margin-bottom:60px;
}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;
}

.why-card{

    background:white;

    padding:35px 25px;

    border-radius:16px;

    text-align:center;

    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.why-card i{

    font-size:3rem;

    color:var(--primary-blue);

    margin-bottom:20px;
}

.why-card h4{

    margin-bottom:15px;
}

.why-card{
    transition:0.3s ease;
}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}