body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  background: #f6fdf6;
  color: #333;
}
header.hero {
  position: relative;
  text-align: center;
}
header.hero img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}
.hero-text {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
}
.cta {
  display: inline-block;
  background: #ffca28;
  color: #003300;
  padding: 10px 20px;
  margin-top: 10px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}
section {
  padding: 30px 20px;
  max-width: 600px;
  margin: auto;
}
form input, form select, form textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}
form button {
  background: #43a047;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}
footer {
  background: #e8f5e9;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #666;
}
