body{
font-family:Poppins;
margin:0;
background:#f5f7fa;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
}

header{
background:white;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo{
height:55px;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#46479B;
font-weight:600;
}

.hero{
height:85vh;
background:linear-gradient(rgba(70,71,155,0.85),rgba(70,71,155,0.85)),
url("https://images.unsplash.com/photo-1585435557343-3b092031a831");
background-size:cover;
color:white;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero h1{
font-size:50px;
margin-bottom:10px;
}

.btn{
background:#F58634;
color:white;
padding:12px 30px;
text-decoration:none;
border-radius:6px;
display:inline-block;
margin-top:15px;
}

.section{
padding:80px 0;
text-align:center;
}

.light{
background:#f0f3ff;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
margin-top:40px;
}

.card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

form{
max-width:450px;
margin:auto;
margin-top:30px;
}

input,button{
width:100%;
padding:12px;
margin-top:12px;
border-radius:5px;
border:1px solid #ccc;
}

button{
background:#46479B;
color:white;
border:none;
cursor:pointer;
}

footer{
background:#46479B;
color:white;
text-align:center;
padding:20px;
}