.hero{
background:linear-gradient(135deg,#061f4f,#0b3478);
color:#fff;
padding:80px 15px;
text-align:center;
}

.hero h1{
font-size:48px;
margin-bottom:15px;
}

.hero p{
max-width:850px;
margin:auto;
line-height:1.8;
}

.section{
padding:40px 0;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
color:#061f4f;
font-size:36px;
margin-bottom:10px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:#fff;
padding:25px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
text-align:center;
transition:.3s;
}

.card:hover{
transform:translateY(-5px);
}

.card i{
font-size:45px;
color:#f4b400;
margin-bottom:15px;
}

.card h3{
color:#061f4f;
margin-bottom:10px;
}

.steps{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.step{
background:#fff;
padding:25px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.step-number{
width:55px;
height:55px;
border-radius:50%;
background:#f4b400;
color:#061f4f;
display:flex;
align-items:center;
justify-content:center;
font-weight:800;
font-size:20px;
margin-bottom:15px;
}

.highlight{
background:#061f4f;
color:#fff;
padding:35px;
border-radius:20px;
text-align:center;
margin-top:40px;
}

.highlight h3{
color:#f4b400;
margin-bottom:10px;
}

.support{
background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
text-align:center;
}

.support-icons{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
margin-top:25px;
}

.support-icons div{
display:flex;
align-items:center;
gap:10px;
font-weight:600;
}

.support-icons i{
color:#f4b400;
font-size:22px;
}


@media(max-width:768px){

.hero h1{
font-size:34px;
}

.section-title h2{
font-size:28px;
}

.hero{
padding:40px 15px;
}


}
