body{
font-family:Inter, Arial, sans-serif;
margin:0;
background:#f7f9fc;
color:#1c1c1c;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 80px;
background:white;
border-bottom:1px solid #eee;
}

.logo{
font-size:22px;
font-weight:600;
color:#0B1F3B;
}

.nav-links a{
margin-left:30px;
text-decoration:none;
color:#333;
font-size:15px;
}

.hero{
padding:140px 80px;
background:linear-gradient(180deg,#0B1F3B,#162e55);
color:white;
}

.hero h1{
font-size:52px;
max-width:700px;
}

.hero p{
font-size:18px;
max-width:550px;
margin-top:20px;
}

.btn{
display:inline-block;
margin-top:30px;
padding:14px 28px;
background:#B89B2E;
color:white;
text-decoration:none;
border-radius:4px;
}

.section{
padding:90px 80px;
}

.section h2{
font-size:36px;
margin-bottom:40px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.card{
background:white;
padding:35px;
border-radius:8px;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

footer{
background:#0B1F3B;
color:white;
text-align:center;
padding:40px;
margin-top:80px;
}