
body{
font-family:'Inter',sans-serif;
margin:0;
color:#1a1a1a;
background:#ffffff;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 40px;
border-bottom:1px solid #e5e5e5;
background:#ffffff;
}

.logo img{
height:42px;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#0078D4;
font-weight:600;
}

.hero{
background:linear-gradient(135deg,#0078D4,#004A9F);
color:white;
padding:120px 20px;
text-align:center;
}

.hero-content{
max-width:800px;
margin:auto;
}

.hero h1{
font-size:42px;
margin-bottom:20px;
}

.section{
padding:80px 20px;
}

.gray{
background:#f5f7fa;
}

.container{
max-width:1100px;
margin:auto;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.card{
padding:25px;
background:white;
border:1px solid #e3e3e3;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.card h3{
margin-top:0;
}

.benefits{
line-height:2;
padding-left:20px;
}

.btn-primary{
display:inline-block;
margin-top:20px;
background:#0078D4;
color:white;
padding:14px 26px;
border-radius:5px;
text-decoration:none;
font-weight:600;
}

footer{
background:#111;
color:white;
text-align:center;
padding:25px;
}
