.why-section{

background:#f8fbff;

}



.why-grid{

display:grid;

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

gap:30px;

}



.why-card{


background:white;

padding:35px;

border-radius:25px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

text-align:center;


}



.why-card:hover{

transform:translateY(-12px);

}



.why-card i{

font-size:45px;

color:#0A3D91;

margin-bottom:25px;

}



.why-card h3{

font-size:22px;

margin-bottom:15px;

}



.why-card p{

color:#666;

line-height:1.8;

}



@media(max-width:900px){

.why-grid{

grid-template-columns:1fr 1fr;

}

}



@media(max-width:600px){

.why-grid{

grid-template-columns:1fr;

}

}