*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f5f7fb;
color:#333;
}

.container{
display:flex;
justify-content:space-between;
align-items:center;
max-width:1100px;
margin:auto;
padding:15px;
}

header{
background:#0a2540;
color:white;
}

.logo{
font-size:24px;
font-weight:bold;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-size:14px;
}

.hero{
height:70vh;
background:linear-gradient(120deg,#0a2540,#1d4ed8);
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero h2{
font-size:40px;
margin-bottom:10px;
}

.hero p{
font-size:18px;
margin-bottom:20px;
}

.hero button{
padding:12px 25px;
border:none;
background:white;
color:#1d4ed8;
font-weight:bold;
cursor:pointer;
border-radius:4px;
}

.services{
padding:60px 20px;
text-align:center;
}

.services h2{
margin-bottom:30px;
}

.service-grid{
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.card{
background:white;
padding:25px;
width:250px;
border-radius:8px;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.about{
background:#ffffff;
padding:50px;
text-align:center;
}

footer{
background:#0a2540;
color:white;
text-align:center;
padding:20px;
}