
/* HERO SECTION */
.hero {
  background-color: #f0f8f4;
  padding: 80px 20px 0 20px;
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
}
.hero-text {
  flex: 1;
  min-width: 300px;
}
.hero-text h1 {
  color: #2b7c54;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.hero-text p {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
}
.btn-primary {
  background-color: #2b7c54;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s;
}
.btn-primary:hover {
  background-color: #246645;
}
.btn-secondary {
  background-color: #e8f5ec;
  color: #2b7c54;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #2b7c54;
  transition: background-color 0.3s, color 0.3s;
}
.btn-secondary:hover {
  background-color: #2b7c54;
  color: white;
}
.hero-image {
  flex: 1;
  min-width: 300px;
}
.hero-image img {
  max-width: 100%;
}
