body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fffdf8;
  color: #2f2f2f;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  background: #7a4b18;
  color: white;
}

.header nav a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
}

.hero {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d4a64a;
  text-align: center;
}

.hero h1 {
  margin: 0;
}

.content {
  padding: 40px;
  text-align: center;
}

.footer {
  background: #7a4b18;
  color: white;
  text-align: center;
  padding: 15px;
}