:root {
  --h-presentation-section-max-width: 1360px;
  --h-presentation-gap: 20px;
  --h-presentation-margin-top: 170px;
  --h-presentation-title-color: #004D33;
  --h-presentation-text-color: #4A5568;
}

/* Reset et normalisation */
.home_presentation * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Conteneur principal */
.home_presentation {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Conteneur de taille contrôlée */
.home_presentation_sz {
  display: flex;
  gap: var(--h-presentation-gap);
  width: calc(100% - 20px);
  max-width: var(--h-presentation-section-max-width);
  margin-top: var(--h-presentation-margin-top);
}

/* Conteneurs d'image et texte */
.home_presentation_image_c,
.home_presentation_texte_c {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  width: calc(50% - 10px);
}

/* Image responsive */
.home_presentation_image_c img {
  width: 95%;
  height: auto;
  object-fit: contain;
}

/* Typographie */

.home_presentation_texte_title {
  color: var(--h-presentation-title-color);
  display: block;
  font-family: 'Industry_Black', sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 1.1;
  text-align: left;
  text-decoration: none;
  width: 100%;
  position: relative;
  padding-top: 20px; /* Espace entre le trait et le texte */
}

.home_presentation_texte_title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background-color: #A1C854; /* Même couleur que le titre */
  border-radius: 2px;
}

.home_presentation_texte_content {
  color: var(--h-presentation-text-color);
  display: block;
  font-family: 'Noto_Regular', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 30px;
  text-align: left;
  text-decoration: none;
  width: 100%;
}

/* Responsive Tablet */
@media screen and (max-width: 1024px) {
  .home_presentation_sz {
    margin-top: 120px;
    gap: 15px;
  }

  .home_presentation_texte_title {
    font-size: 32px;
    padding-top: 18px;
  }

  .home_presentation_texte_title::before {
    width: 90px;
    height: 3px;
  }

  .home_presentation_texte_content {
    font-size: 18px;
    margin-top: 20px;
  }
}

/* Responsive Mobile */
@media screen and (max-width: 768px) {
  .home_presentation_sz {
    align-items: center;
    flex-direction: column;
    margin-top: 80px;
    gap: 30px;
  }

  .home_presentation_image_c,
  .home_presentation_texte_c {
    width: 100%;
  }

  .home_presentation_image_c img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .home_presentation_texte_title {
    font-size: 28px;
    padding-top: 15px;
    text-align: center;
  }

  .home_presentation_texte_title::before {
    height: 3px;
    left: 50%;
    transform: translateX(-50%); /* Centre le trait sur mobile */
  }


  .home_presentation_texte_content {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    margin-top: 15px;
  }
}

/* Optimisation mobile small */
@media screen and (max-width: 480px) {
  .home_presentation_sz {
    margin-top: 60px;
    gap: 20px;
  }

  .home_presentation_texte_title {
    font-size: 24px;
    padding-top: 12px;
  }

  .home_presentation_texte_title::before {
    height: 2px;
  }

  .home_presentation_texte_content {
    font-size: 18px;
    line-height: 1.5;
  }
}
