body {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
  background: #f4f6f8;
  color: #333;
}

.header {
  text-align: center;
  background: #0a2540;
  color: white;
  padding: 20px;
}

.logo {
  width: 300px;
  height: auto;
}

.tagline {
  font-size: 14px;
  opacity: 0.8;
}

.nav {
  background: #133b5c;
  text-align: center;
  padding: 10px;
}

.nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

.nav a:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 50px 20px;
  background: white;
}

.button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #0077cc;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.section {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

.contact form {
  display: flex;
  flex-direction: column;
}

.contact input,
.contact textarea {
  margin-bottom: 10px;
  padding: 10px;
  font-size: 16px;
}

.contact button {
  padding: 10px;
  background: #0a2540;
  color: white;
  border: none;
  cursor: pointer;
}

.footer {
  text-align: center;
  padding: 15px;
  background: #0a2540;
  color: white;
  margin-top: 20px;
}

.note {
  font-size: 12px;
  color: #666;
}