body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #0A2540;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

header {
  background: white;
  border-bottom: 1px solid #ddd;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #0A2540;
  font-weight: bold;
}

.hero {
  background: #0A2540;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 32px;
}

.btn {
  display: inline-block;
  background: #2F80ED;
  color: white;
  padding: 12px 20px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 5px;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: #f5f7fa;
}

ul {
  margin-top: 20px;
}

.highlight {
  margin-top: 20px;
  font-weight: bold;
}

form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

form input, form textarea {
  margin-bottom: 10px;
  padding: 10px;
  font-size: 16px;
}

form button {
  background: #0A2540;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
}

footer {
  background: #0A2540;
  color: white;
  text-align: center;
  padding: 20px 0;
}