*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f5f7fa;
color:#333;
}

header{
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 10%;
}

.logo{
font-size:22px;
font-weight:bold;
color:#2563eb;
}

.nav-links{
list-style:none;
display:flex;
gap:25px;
}

.nav-links a{
text-decoration:none;
color:#333;
font-weight:500;
}

.hero{
height:80vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:linear-gradient(120deg,#2563eb,#3b82f6);
color:white;
}

.hero-content{
max-width:600px;
}

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

.hero p{
font-size:18px;
margin-bottom:25px;
}

.btn{
padding:12px 25px;
border:none;
background:white;
color:#2563eb;
font-weight:bold;
border-radius:6px;
cursor:pointer;
}

.stats{
display:flex;
justify-content:center;
gap:80px;
padding:60px 20px;
background:white;
}

.stat h2{
font-size:36px;
color:#2563eb;
}

.features{
padding:80px 10%;
text-align:center;
}

.features h2{
margin-bottom:40px;
font-size:32px;
}

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

.card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.card h3{
margin-bottom:10px;
}

.cta{
background:#2563eb;
color:white;
text-align:center;
padding:70px 20px;
}

.cta h2{
margin-bottom:20px;
}

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