body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: url('background.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  color: white;
  text-align: center;
}

h1 {
  font-size: 36px;
  color: gold;
  margin-bottom: 10px;
}

h2 {
  font-size: 28px;
  margin-top: 50px;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero {
  padding: 100px 20px 50px;
}

.button-container {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.button {
  background-color: gold;
  color: black;
  padding: 15px 30px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  width: 250px;
  text-align: center;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #e6b800;
}

form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 80%;
  max-width: 400px;
}

button[type="submit"] {
  background-color: gold;
  color: black;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #e6b800;
}

footer {
  margin-top: 30px;
  font-size: 14px;
}