body {
  font-family: sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
  color: #333;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

.subtitle {
  font-size: 1.1rem;
  color: #666;
}

.intro {
  text-align: center;
  margin-bottom: 2rem;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #0077cc;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.button:hover {
  background: #005fa3;
}

.contact h2 {
  margin-bottom: 1rem;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input,
textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: inherit;
}

button {
  padding: 0.75rem;
  background: #0077cc;
  color: white;
  border: none;
  border-radius: 4px;
  font: inherit;
  cursor: pointer;
}

button:hover {
  background: #005fa3;
}


footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #aaa;
}
