body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #F5F5F5;
  color: #333;
padding-top: 100px; /* Makes space for the fixed navbar */
}

/* Navbar */
nav.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #0A1F44; /* Dark navy background */
  display: flex;
  justify-content: center;
  padding: 20px 0;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 50px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.nav-links li {
  display: flex;
}
.nav-links li a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}
.nav-links li a:hover {
  color: #D4AF37;
}

/* Hero sections */
header.hero, header.page-hero {
  background: url('images/background-image.jpg') center center/cover no-repeat;
  height: 100vh;
  position: relative;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.page-hero {
  height: 50vh;
}
.overlay {
  background-color: rgba(10, 31, 68, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}
header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 54px;
  margin-bottom: 20px;
}
header p {
  font-size: 24px;
}

/* Buttons */
.buttons a {
  display: inline-block;
  margin: 15px 10px 0;
  padding: 15px 30px;
  background: #D4AF37;
  color: #0A1F44;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}
.buttons a:hover {
  background: #b8902d;
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}
section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  color: #0A1F44;
  margin-bottom: 20px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
ul {
  list-style: none;
  padding: 0;
}
ul li::before {
  content: "\2022";
  color: #D4AF37;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
/* Form */
form {
  display: grid;
  gap: 15px;
  max-width: 500px;
  margin: 20px auto 0;
}
input, textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
}
button {
  background: #D4AF37;
  color: #0A1F44;
  font-weight: bold;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
}
button:hover {
  background: #b8902d;
}

/* Footer */
footer {
  background: #0A1F44;
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin-top: 40px;
}
footer p {
  margin: 0;
}
.hamburger {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #0A1F44;
    position: absolute;
    top: 70px;
    right: 20px;
    width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 8px;
  }
  .nav-links.show {
    display: flex;
  }
  .hamburger {
    display: block;
  }
}

