/* ============================================================
   SECTION ICÔNES ÉCOLOGIQUES — responsive
   Remplace le positionnement absolu de NicePage (u-section-2)
   ============================================================ */

.eco-icons-section {
  background-color: #fff !important;
  padding: 20px 20px 60px !important;
}

.eco-icons-container {
  max-width: 1140px; /* aligne sur la largeur du contenu NicePage */
  margin: 0 auto !important;
  text-align: center !important;
}

.eco-title-main {
  font-family: 'Lato', sans-serif !important;
  font-size: 3rem !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  color: #b8962e !important;
  margin: 0 0 20px !important;
}

.eco-intro {
  font-size: 0.98rem !important;
  line-height: 1.6 !important;
  text-align: justify !important;
  max-width: 1140px; /* pleine largeur du conteneur pour aligner sur l'image */
  margin: 0 auto 40px !important;
}

.eco-title-sub {
  font-family: 'Lato', sans-serif !important;
  font-size: 3rem !important;
  font-weight: 300 !important;
  line-height: 1 !important;
  color: #b8962e !important;
  margin: 0 0 30px !important;
}

/* Grille 4 colonnes sur desktop — icônes plus petites, plus espacées */
.eco-icons-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  gap: 40px 0 !important;
  padding: 0 20px !important;
}

.eco-icon-item {
  flex: 0 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
}

.eco-icon-img {
  width: 75px !important;
  height: 75px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.eco-icon-img img,
.eco-icon-img svg {
  width: 75px !important;
  height: 75px !important;
}

.eco-icon-label {
  font-family: 'Lato', sans-serif !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  color: #4a5568 !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  text-transform: uppercase !important;
  
}

.eco-icon-desc {
  font-size: 0.8rem !important;
  line-height: 1.5 !important;
  color: #6b7280 !important;
  margin: 0 !important;
  
}

/* Tablette : 2 colonnes */
@media (max-width: 767px) {
  .eco-title-main,
  .eco-title-sub {
    font-size: 2rem !important;
  }

  .eco-icons-grid {
    justify-content: center !important;
    gap: 40px 20px !important;
    padding: 0 !important;
  }

  .eco-icon-item {
    flex: 0 0 calc(50% - 20px) !important;
    max-width: 240px !important;
  }
}

/* Mobile : 1 colonne */
@media (max-width: 480px) {
  .eco-icons-section {
    padding: 20px 16px 40px !important;
  }

  .eco-title-main,
  .eco-title-sub {
    font-size: 1.6rem !important;
  }

  .eco-intro {
    font-size: 0.875rem !important;
    text-align: left !important;
  }

  .eco-icons-grid {
    padding: 0 !important;
  }

  .eco-icon-item {
    flex: 0 0 100% !important;
    max-width: 280px !important;
  }
}