/* Base Styles */
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: #f9f9f9;
}

header {
  /* background-color: #004080; */
  background-color: #D9CFBB;
  color: black;
  padding: 20px;
  text-align: center;
}

.logo {
  max-width: 150px;
  margin-bottom: 10px;
}

nav {
  position: relative;
}

nav .menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: black;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 10px;
}

.nav-links {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  flex-wrap: wrap;
}

.nav-links li {
  margin: 0 10px;
}

.nav-links a {
  color: black;
  text-decoration: none;
  padding: 10px 15px;
}

.nav-links a:hover {
  background-color: #003060;
  border-radius: 4px;
}

main {
  padding: 20px;
  text-align: center;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

section {
  margin-bottom: 20px;
}

footer {
  background-color: #D9CFBB;
  color: black;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;

}

/* Responsive Design */
@media (max-width: 768px) {
  nav .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #004080;
    width: 100%;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 0;
    border-top: 1px solid #003060;
  }

  .nav-links a {
    padding: 15px;
  }

  .logo {
    max-width: 40px;
  }
}