/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #f4f9fc;
  color: #222;
  line-height: 1.6;
}

/* Navigation Bar */
.navbar {
  background-color: #003366;
  border-bottom: 3px solid #007acc;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}
.nav-menu li a {
  font-family: 'Arial Rounded MT Bold', sans-serif;
  color: #e6f7ff;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.nav-menu li a:hover {
  background-color: #005999;
  color: white;
}

/* Headings and Sections */
h1, h2 {
  color: #007acc;
}
.section p, .section li {
  color: #333;
}

/* Form & Buttons */
form label, form input, form button {
  font-family: inherit;
}
form button {
  background-color: #007acc;
  color: white;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
form button:hover {
  background-color: #005999;
}

/* Footer */
.footer {
  background-color: #002244;
  color: #cce7ff;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 2px solid #007acc;
}