<style>
/* Section principale */
.content-counter-sec {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 57px 0;
  background: #F1F3FF;
}

/* Wrapper global */
.content-wrapper {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

/* Titre principal */
.main_title {
  width: 100%;
  display: inline-block;
  color: #2575fc;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 30px;
}

/* Boîte qui contient tous les compteurs */
.counter-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 42px;
  background: #F1F3FF;
  border-radius: 10px;
  padding: 40px;
  flex-wrap: wrap;
}

/* Bloc individuel */
.counter {
  text-align: center;
  padding: 20px;
  min-width: 150px;
}

/* Valeur du compteur */
.counter .count {
  font-size: 36px;
  font-weight: 700;
  color: #596AEE;
  line-height: 1;
}

/* Préfixe et suffixe (autour du nombre) */
.counter span {
  font-size: 36px;
  font-weight: 700;
  color: #596AEE;
}

/* Texte sous le chiffre */
.counter p {
  color: #000;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  margin: 8px 0 0;
}
</style>
