body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  background: #1e3a8a;
  color: white;
  padding: 1rem;
  text-align: center;
}

nav a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

h1, h2 {
  text-align: center;
}

main {
  padding: 2rem;
}

.cta-button {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.cta-button:hover {
  background: #1d4ed8;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

form input, form textarea, form button {
  margin: 0.5rem 0;
  padding: 0.5rem;
}

footer {
  background: #1e40af;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
