.container-comp {
  width: 85%;
  margin: 1.8rem auto 15px;
  display: grid;
  grid-template-columns: 70% 1fr;
}
.container-comp h2,
.container-comp h3 {
  color: blueviolet;
}
.cont-comp {
  width: 100%;
  padding: 20px;
}
.cont-comp p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #333;
}
.cont-comp p .bx-check-circle {
  font-size: 1.2rem;
  color: blueviolet;
}

.info-block-container {
  width: 100%;
  min-height: 550px;
  background: #0d001a;
  color: #333;
  padding: 30px 25px;
  box-sizing: border-box;
  border-radius: 30px;
}

/* * Simulation de l'arrière-plan complexe avec des pseudo-éléments 
 */
.info-block-container {
  background: blueviolet;
  color: white;
}

/* Assurer que le contenu est au-dessus du fond */
.content {
  position: relative;
  z-index: 1;
}

/* * Styles des textes
 */
.main-title {
  font-size: 0.9em;
  font-weight: bold;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 0.8em;
  margin-bottom: 20px; /* Espacement plus grand comme sur l'image */
  color: white; /* Légèrement moins blanc */
}

/* * Grille des statistiques
 */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #333;
  margin-bottom: 40px;
  padding: 15px;
}

.stat-item {
  padding-bottom: 20px;
  text-align: center;
}

.large-stat:nth-child(1) {
  border-right: 1px solid #333;
  padding-right: 10px; /* Espace pour la séparation */
}

.full-width-stat {
  grid-column: 1 / 3; /* Occupe les deux colonnes */
  border-top: 1px solid #333;
  padding-top: 15px;
  text-align: center; /* Centrer le texte pour cet élément */
}

.number {
  display: block;
  font-size: 1.1em;
  font-weight: 300; /* Plus fin que le titre principal */
  line-height: 1.1;
  margin-bottom: 5px;
}

.award-number {
  font-size: 1.5em; /* Le +12 est visuellement plus grand */
}

.nuu {
  text-align: center;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .container-comp {
    width: 100%;
    grid-template-columns: 100%;
  }
  .info-block-container {
    display: none;
  }
}
