body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f8f8f8;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #002366;
  padding: 10px 20px;
}

.logo {
  width: 120px; /* Adjust size as needed */
  height: auto;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 8px 15px;
  background: #ffffff33;
  border-radius: 5px;
  transition: background 0.3s;
}

.nav-link:hover {
  background: #ffffff66;
}

.container {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

h1,
h2 {
  color: #002366;
}

p {
  color: #333;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
  }

  .header {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    margin-bottom: 10px;
  }

  .nav-link {
    display: block;
    margin-top: 5px;
  }
}
