body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #f5f8fb;
}

header {
  background-color: #003366;
  color: white;
}

nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1em 2em;
  gap: 4em;
}

nav .logo img {
  max-height: 250px;
}

.menu-toggle {
  display: none;
  font-size: 2em;
  cursor: pointer;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2em;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #003366;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    text-align: center;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin: 1em 0;
  }
}

section {
  padding: 3em 2em;
}

#hero {
  background: linear-gradient(to right, #003366, #ff6600);
  color: white;
  text-align: center;
  padding: 6em 2em;
}

#hero h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

#hero p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

.button {
  display: inline-block;
  padding: 0.75em 1.5em;
  background-color: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

h2 {
  color: #003366;
  margin-bottom: 1em;
}

/* alternate section colors for life */
section:nth-of-type(even) {
  background-color: #ffffff;
}

section:nth-of-type(odd) {
  background-color: #f5f8fb;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 500px;
  margin: auto;
}

form input, form textarea {
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background-color: #003366;
  color: white;
  border: none;
  padding: 0.75em;
  cursor: pointer;
  border-radius: 4px;
}

form button:hover {
  background-color: #002244;
}

footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 1em 0;
}
