.container {
  margin: 30px auto;
  max-width: auto;
  min-width: auto;
  width: 75%;
}

.article {
  text-justify: auto;
  color: var(--card-txt);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: var(--font-weight);

  @media (max-width: 768px) {
    font-size: 12px;
  }
}

.container2 {
  position: relative;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 35%;
  margin: 0 auto;
  margin-bottom: 15px;
  /* Ajustez */
}

#imglogo {
  width: 200px;
  height: auto;
  display: block;

  /* S'il est inline, ce n'est pas idéal */
  @media (max-width: 768px) {
    height: 100px;
    width: auto;
  }
}

.entreprise {
  font-family: 'Times New Roman', Times, serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: -5px;

  @media (max-width: 768px) {
    font-size: 44px;
    font-weight: 400;
    width: auto;
  }
}

.logocentre {
  font-size: 196px;
  font-weight: 700;
  display: inline-block;
  /* Permet le scaling */
  transform: scaleX(0.85);
  /* Rétrécit horizontalement */
  transform-origin: center;
  /* Centre le rétrécissement */
  letter-spacing: 2px;

  /* Compense l'étirement optique */
  @media (max-width: 768px) {
    font-size: 96px;
  }
}

.slogan-centre {
  margin-top: -10px;
  /* Valeur négative pour remonter le slogan */
  line-height: 1.2;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--colorslogan);

  @media (max-width: 768px) {
    font-size: 14px;
  }
}

/* -------------------------------------------------- */
/* Conteneur principal avec disposition en grille à trois colonnes */
#container {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}


.rangee {
  display: grid;
  /* Active la disposition en grille */
  grid-template-columns: repeat(3, 1fr);
  /* Trois colonnes de largeur égale */
  grid-gap: 50px;
  /* Espace entre les colonnes */
  padding: 20px;
  /* Espace intérieur du conteneur */
  font-family: 'Poppins', sans-serif;
  /* Police lisible */
}

/* Style de base pour chaque colonne */
.colonne {
  flex: 1;
  background: var(--fdtabvert1);
  color: var(--texttab);
  text-shadow: 3px 3px 3px black;
  padding: 15px;
  /* Espace intérieur des colonnes */
  border-radius: 20px;
  /* Coins arrondis */
  box-shadow: var(--shatab);
  /* Légère ombre pour la profondeur */
  height: auto;
}

.colonne-fd-inverse {
  flex: 1;
  /*background: #201B0;*/
  background: var(--fdtabvert2);
  color: var(--texttab);
  text-shadow: 3px 3px 3px black;
  color: var(--texttab);
  padding: 15px;
  /* Espace intérieur des colonnes */
  border-radius: 20px;
  /* Coins arrondis */
  box-shadow: var(--shatab);
  /* Légère ombre pour la profondeur */
  height: auto;
}

.colonnebasse {
  width: 98%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  /* Police lisible */
  background: var(--fdtabvert3);
  text-shadow: 3px 3px 3px black;
  color: var(--texttab);
  padding: 15px;
  /* Espace intérieur des colonnes */
  border-radius: 20px;
  /* Coins arrondis */
  box-shadow: var(--shatab);
  /* Légère ombre pour la profondeur */
  height: auto;
}

@media (max-width: 768px) {
  .rangee {
    grid-template-columns: 1fr;
    /* Une seule colonne occupant toute la largeur */
    gap: 15px;
    /* Réduit l'espace entre les lignes */
    padding: 10px;
    /* Réduit le padding pour les petits écrans */
  }

  .colonne {
    font-size: 1rem;
    /* Taille de police adaptée au mobile */
  }

  .rangeebasse {
    grid-gap: 15px;
    /* Espace entre les colonnes */
    padding: 20px;
    /* Espace intérieur du conteneur */
  }

  .colonnebasse {
    font-size: 1rem;
    /* Taille de police adaptée au mobile */
  }
}

.titrecentre {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

.grille0 {
  display: grid;
  /* Active la disposition en grille */
  grid-template-columns: 70% 30%;
  margin: 0;
}

.cel01 {
  background: transparent;
  color: light-dark(black white);
  padding: 5px;
  /* Espace intérieur des colonnes */
  height: auto;
  margin-top: auto;
  margin-bottom: auto;
  font-size: 14px;
}

.cel02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Assure que l'image couvre sans déformer */
}

.titre-bandeau {
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
  font-size: 30px;
}

.cel01 p {
  font-family: 'roboto', sans-serif;
  font-size: 16px;
  text-align: center;
  color: light-dark(black, white);
}

.paraph {
  text-align: justify;
  max-width: 1000%;
}

#espaceur {
  margin: 30px 0 10px 0;
}

.new0 {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgb(253, 102, 2);
  border-radius: .5px;
}