body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1a1a1a;
  background: #f6f7f9;
}

header {
  background: #0b1f3a;
  color: white;
  padding: 20px 0;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

nav a {
  color: white;
  margin-right: 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  background: #e6ecf5;
  padding: 60px 0;
}

.hero h2 {
  font-size: 2em;
}

.content {
  padding: 40px 0;
  background: white;
}

h1, h2, h3 {
  color: #0b1f3a;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background: #c8102e;
  color: white;
  text-decoration: none;
  margin-top: 15px;
  font-weight: bold;
}

.button:hover {
  background: #a50d24;
}

footer {
  background: #0b1f3a;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

ul {
  line-height: 1.6;
}