body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#f4f4f4;
}

header{
background:#1f4fa5;
padding:15px 40px;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
color:white;
}

.navbar ul{
list-style:none;
display:flex;
gap:20px;
}

.navbar a{
color:white;
text-decoration:none;
font-weight:bold;
}

.hero{
height:350px;
background:linear-gradient(to right,#1f4fa5,#2c66d1);
color:white;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
}

.hero h1{
font-size:40px;
margin-bottom:10px;
}

.btn{
background:white;
color:#1f4fa5;
padding:12px 25px;
border-radius:6px;
text-decoration:none;
font-weight:bold;
margin-top:20px;
}

.features{
display:flex;
justify-content:center;
gap:40px;
padding:60px 20px;
}

.feature{
background:white;
padding:30px;
width:220px;
text-align:center;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.apply-section{
background:white;
width:420px;
margin:40px auto;
padding:40px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.apply-section h2{
text-align:center;
}

form input, form textarea{
width:100%;
padding:12px;
margin:10px 0;
border:1px solid #ccc;
border-radius:5px;
}

form button{
width:100%;
padding:12px;
background:#1f4fa5;
color:white;
border:none;
border-radius:5px;
font-size:16px;
cursor:pointer;
}

footer{
text-align:center;
background:#1f4fa5;
color:white;
padding:20px;
margin-top:40px;
}