*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Inter, sans-serif;
color:#0f172a;
background:#ffffff;
line-height:1.6;
}

.navbar{
position:sticky;
top:0;
background:white;
border-bottom:1px solid #e5e7eb;
}

.nav-container{
max-width:1100px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px;
}

.logo{
font-weight:600;
font-size:20px;
}

nav a{
margin-left:24px;
text-decoration:none;
color:#374151;
}

.hero{
height:70vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:40px;
}

.hero h1{
font-size:44px;
margin-bottom:16px;
}

.hero p{
color:#6b7280;
margin-bottom:30px;
}

.cta{
background:#2563eb;
color:white;
padding:14px 26px;
border-radius:8px;
text-decoration:none;
display:inline-block;
}

.section{
max-width:1100px;
margin:auto;
padding:80px 20px;
text-align:center;
}

.gray{
background:#f8fafc;
}

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

.card{
padding:30px;
border:1px solid #e5e7eb;
border-radius:10px;
background:white;
}

.steps{
display:flex;
justify-content:center;
gap:50px;
margin-top:40px;
flex-wrap:wrap;
}

.steps h3{
font-size:32px;
color:#2563eb;
}

.about-text{
max-width:600px;
margin:auto;
margin-top:20px;
color:#374151;
}

.contact-box{
margin-top:30px;
}

footer{
text-align:center;
padding:40px;
color:#6b7280;
}
