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

body{
line-height:1.6;
color:#333;
}

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

.hero{
background:linear-gradient(120deg,#2563eb,#1e3a8a);
color:white;
padding:60px 0;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

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

.hero p{
margin-bottom:20px;
}

.benefits li{
margin-bottom:10px;
}

.hero-form{
background:white;
color:#333;
padding:30px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.2);
display:flex;
flex-direction:column;
gap:10px;
}

.hero-form input{
padding:12px;
border-radius:6px;
border:1px solid #ddd;
}

.hero-form button{
padding:14px;
border:none;
border-radius:6px;
font-weight:600;
cursor:pointer;
background:#2563eb;
color:white;
}

.cta{
display:inline-block;
background:#22c55e;
color:white;
padding:14px 24px;
border-radius:8px;
text-decoration:none;
font-weight:600;
margin-top:20px;
}

.section{
padding:70px 0;
}

.gray{
background:#f5f7fb;
}

.steps{
text-align:center;
}

.steps .step{
margin-top:30px;
}

.list{
margin:20px 0;
}

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

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

.faq h4{
margin-top:20px;
}

footer{
background:#111827;
color:white;
padding:30px 0;
text-align:center;
}

.small{
font-size:12px;
opacity:0.8;
}

@media(max-width:900px){

.hero-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:30px;
}

}
