




*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#333;
    line-height:1.8;
}
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:60px 0;
}
.section-title{
    text-align:center;
    margin-bottom:50px;
}
.section-title h1{
    color:#0B4F9C;
    font-size:40px;
    font-weight:700;
}
.section-title p{
    color:#666;
    font-size:18px;
    margin-top:10px;
}
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(450px,1fr));
    gap:35px;
}
.card{
    background:#fff;
    border-radius:15px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}
.card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}
.card h2{
    color:#0B4F9C;
    font-size:28px;
    margin-bottom:20px;
    border-left:6px solid #ff9800;
    padding-left:15px;
}
.card p{
    text-align:justify;
    color:#555;
    margin-bottom:15px;
}
.highlight{
    margin-top:60px;
    background:linear-gradient(135deg,#0B4F9C,#1976D2);
    color:#fff;
    border-radius:18px;
    padding:55px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}
.highlight h2{
    font-size:34px;
    margin-bottom:20px;
}
.highlight p{
    font-size:20px;
    max-width:900px;
    margin:auto;
    line-height:1.9;
}
.icon{
    font-size:40px;
    margin-bottom:15px;
}
.features{
    margin-top:60px;
}
.features h2{
    text-align:center;
    color:#0B4F9C;
    margin-bottom:35px;
    font-size:32px;
}
.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}
.feature{
    background:#fff;
    padding:30px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    transition:.3s;
}
.feature:hover{
    background:#0B4F9C;
    color:#fff;
    transform:translateY(-6px);
}
.feature span{
    font-size:45px;
    display:block;
    margin-bottom:15px;
}
.feature h4{
    margin-bottom:12px;
}
@media(max-width:768px){
    .grid{
        grid-template-columns:1fr;
    }
    .section-title h1{
        font-size:30px;
    }
    .highlight{
        padding:35px 20px;
    }
    .highlight h2{
        font-size:26px;
    }
}






