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

body{

font-family:Inter,sans-serif;
background:#f7faff;
color:#223048;
line-height:1.6;

}

.container{

width:min(1200px,92%);
margin:auto;

}

header{

background:white;
box-shadow:0 5px 20px rgba(0,0,0,.05);
position:sticky;
top:0;
z-index:100;

}

.nav{

display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;

}

.logo{

font-size:2rem;
font-weight:800;
color:#1b3557;

}

.logo span{

color:#2f7df6;

}

nav{

display:flex;
gap:30px;

}

nav a{

text-decoration:none;
color:#506070;
font-weight:500;
transition:.3s;

}

nav a:hover{

color:#2f7df6;

}

.button{

background:#2f7df6;
color:white;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
font-weight:600;

}

.hero{

padding:80px 0;

}

.hero-grid{

display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:60px;

}

.eyebrow{

display:inline-block;
padding:8px 18px;
background:#dcecff;
color:#2f7df6;
border-radius:100px;
font-weight:600;
margin-bottom:20px;

}

.hero h1{

font-size:4rem;
line-height:1.1;
margin-bottom:20px;
color:#1b3557;

}

.hero p{

font-size:1.15rem;
color:#566575;
margin-bottom:30px;

}

.search-box{

display:flex;
overflow:hidden;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
background:white;

}

.search-box input{

flex:1;
border:none;
padding:18px;
font-size:1rem;
outline:none;

}

.search-box button{

border:none;
background:#2f7df6;
color:white;
padding:18px 35px;
font-size:1rem;
cursor:pointer;

}

.hero-icons{

display:flex;
gap:25px;
margin-top:30px;
flex-wrap:wrap;

}

.hero-icons div{

font-weight:600;
color:#455565;

}

.hero-image{

text-align:center;

}

.hero-image img{

max-width:100%;
width:600px;

}

.cards{

padding:70px 0;

}

.card-grid{

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

}

.card{

background:white;
padding:35px;
border-radius:18px;
box-shadow:0 15px 35px rgba(0,0,0,.06);
transition:.3s;

}

.card:hover{

transform:translateY(-6px);

}

.card h3{

margin-bottom:15px;
color:#1b3557;

}

.card p{

color:#64717f;
margin-bottom:20px;

}

.card a{

text-decoration:none;
color:#2f7df6;
font-weight:700;

}

.feature{

padding:90px 0;
text-align:center;

}

.feature h2{

font-size:2.5rem;
margin-bottom:20px;
color:#1b3557;

}

.feature p{

font-size:1.15rem;
max-width:700px;
margin:auto;
color:#62707d;

}

footer{

margin-top:80px;
background:#193654;
color:white;

}

.footer{

display:flex;
justify-content:space-between;
align-items:center;
padding:45px 0;

}

.footer a{

color:white;
margin-left:20px;
text-decoration:none;

}

@media(max-width:900px){

.hero-grid{

grid-template-columns:1fr;
text-align:center;

}

.hero h1{

font-size:2.8rem;

}

.search-box{

flex-direction:column;

}

.search-box button{

width:100%;

}

nav{

display:none;

}

.footer{

flex-direction:column;
gap:20px;

}

}
