/* General */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  background: #fff;
  color: #222;
}

/* Hero section */
.plant-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 60px 10%;
  background: #f9f9f9;
  border-radius: 0 0 40px 40px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-text .green {
  color: #2e7d32;
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #555;
  line-height: 1.5;
}

.stats {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.stats h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #222;
}

.stats p {
  margin: 0;
  font-size: 0.85rem;
  color: #777;
}

.hero-text button {
  background: #2e7d32;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-text button:hover {
  background: #256427;
}

.hero-image img {
  width: 100%;
}

/* Cards section */
.plant-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 40px 10%;
}

.plant-cards .card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.plant-cards .card img {
  width: 60px;
  margin-bottom: 15px;
}

.plant-cards .card p {
  font-size: 0.95rem;
  color: #444;
}

.plant-cards .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 900px) {
  .plant-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .stats {
    justify-content: center;
  }
  .plant-cards {
    grid-template-columns: 1fr;
  }
}
