* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
  color: #fff;
  background: #000;
}

section {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.overlay {
  background: rgba(0,0,0,0.55);
  padding: 3rem;
  border-radius: 12px;
}

h1, h2 {
  margin-bottom: 1rem;
  color: #ff7f32; /* Orange garnet tone */
}

p, li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

form input, form textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
}

form button {
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  background: #ff7f32;
  color: #fff;
  cursor: pointer;
}

footer {
  background: #111;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}
