*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  background:#f5f5f5;
}

header{
  background:#001b4d;
  padding:15px 7%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

.logo{
  display:flex;
  align-items:center;
  gap:15px;
  color:white;
}

.logo img{
  width:70px;
  height:70px;
  border-radius:50%;
}

nav{
  display:flex;
  gap:25px;
}

nav a{
  color:white;
  text-decoration:none;
  font-weight:bold;
}

nav a:hover{
  color:#ffbf00;
}

.btn{
  background:#ffbf00;
  color:#001b4d;
  padding:12px 24px;
  border-radius:8px;
  text-decoration:none;
  font-weight:bold;
}

.hero{
  height:90vh;
  background:
  linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
  url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?q=80&w=1400&auto=format&fit=crop');
  background-size:cover;
  display:flex;
  align-items:center;
  padding:0 7%;
  color:white;
}

.hero-content h1{
  font-size:70px;
  margin-bottom:20px;
}

.hero-content h1 span{
  color:#ffbf00;
}

.hero-content p{
  max-width:650px;
  line-height:1.8;
  margin-bottom:30px;
  font-size:20px;
}

.hero-btn{
  background:#ffbf00;
  color:#001b4d;
  padding:15px 30px;
  text-decoration:none;
  border-radius:10px;
  font-weight:bold;
}

.features{
  padding:70px 7%;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.card{
  background:white;
  padding:30px;
  border-radius:15px;
  box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.card h3{
  color:#001b4d;
  margin-bottom:15px;
}

.page-banner{
  background:#001b4d;
  color:white;
  text-align:center;
  padding:80px 20px;
}

.page-banner h1{
  font-size:50px;
}

.content{
  padding:70px 7%;
}

.vision-box,
.promise,
.news-card{
  background:white;
  padding:30px;
  margin-bottom:25px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:20px;
  max-width:700px;
}

.contact-form input,
.contact-form textarea{
  padding:15px;
  border:1px solid #ccc;
  border-radius:8px;
}

.contact-form textarea{
  height:150px;
}

.contact-form button{
  background:#001b4d;
  color:white;
  padding:15px;
  border:none;
  border-radius:8px;
  cursor:pointer;
}

footer{
  background:#000f2d;
  color:white;
  text-align:center;
  padding:25px;
  margin-top:40px;
}

@media(max-width:768px){

  header{
    flex-direction:column;
    gap:20px;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero-content h1{
    font-size:45px;
  }

}