/* ================================
   GROWTH SECTION - STRONG VERSION
================================ */

.growth-section {
  background: linear-gradient(90deg, var(--green-dark), #0b3d28);
  padding: 70px 0;
  text-align: center;
  color: white;
}

.growth-container {
  max-width: 1000px;
  margin: auto;
}

.growth-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.growth-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.growth-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
}

.growth-item i {
  color: var(--green-light);
  font-size: 1.2rem;
}

.growth-strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-light);
}

@media (min-width: 768px) {
  .growth-points {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}