/* ----- STYLE GLOBAL ----- */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #edf2f4;
  color: black;
  margin: 0;
  padding: 0;
}
/* ----- CONTENEUR PRINCIPAL ----- */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ----- OBJECTIFS ----- */
.objectifs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 50px;
}
.objectif {
  background-color: rgba(0, 100, 0, 0.6);
  border-radius: 12px;
  width: 300px;
  padding: 20px;
  text-align: center;
}
.objectif .emoji {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.objectif h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* ----- GRAPHIQUE ----- */
.graphique {
  background-color: #1c1c1c;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 50px;
}
.graphique h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* ----- INITIATIVES ----- */
.initiatives {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  color: black;
}
.liste {
  flex: 1;
  min-width: 300px;
}
.initiative {
  color: black;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.initiative .icone {
  font-size: 2rem;
  margin-right: 15px;
}
.chiffres {
  flex: 1;
  text-align: center;
}
.chiffre-box {
  background: linear-gradient(135deg, #500210, #d80536, #9b59b6);
  border-radius: 20px;
  padding: 40px;
  display: inline-block;
}
.chiffre-box .emoji {
  font-size: 3rem;
  margin-bottom: 10px;
}
.pourcentage {
  font-size: 2rem;
  font-weight: bold;
}
.texte {
  font-size: 1rem;
  opacity: 0.8;
}

