body {
  margin: 0;
  font-family: Arial;
}

/* HERO */
.hero {
  position: relative;
  height: 400px;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.hero-text h1 {
  font-size: 45px;
}

.hero-text p {
  font-size: 18px;
}

/* ABOUT */
.about {
  padding: 80px 20px;
  background: #f9fdf9;
}

.row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1;
}

.text h2 {
  color: #2e7d32;
}

.text p {
  color: #555;
  line-height: 1.6;
}

.image img {
  width: 80%;
  border-radius: 15px;
  transition: 0.4s;
}

/* IMAGE HOVER */
.image img:hover {
  transform: scale(1.05);
}

/* FEATURES */
.features {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg,#e8f5e9,#f1f8e9);
}

.feature-box {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 25px;
  width: 220px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.card img {
  width: 100px;
}

.card:hover {
  transform: translateY(-10px);
}

/* CTA */
.cta {
  text-align: center;
  padding: 60px;
  background: #2e7d32;
  color: white;
}

.cta a {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background: white;
  color: #2e7d32;
  text-decoration: none;
  border-radius: 8px;
}

/* ANIMATION */
.row {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width:768px){
  .row {
    flex-direction: column;
  }
}