
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}
.hero {
  background: linear-gradient(to right, #a8e6cf, #dcedc1);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.overlay {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 20px;
  max-width: 500px;
}
h1, h2 {
  color: #2e7d32;
}
.button {
  display: inline-block;
  margin: 1rem 0;
  padding: 0.8rem 1.5rem;
  background: #388e3c;
  color: white;
  text-decoration: none;
  border-radius: 8px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form input,
.contact-form textarea {
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.contact-form button {
  padding: 0.6rem;
  background: #2e7d32;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
section {
  padding: 2rem;
  background: #f5f5f5;
}
.gallery img {
  max-width: 45%;
  margin: 1rem;
}
footer {
  text-align: center;
  background: #388e3c;
  color: white;
  padding: 1rem;
}
