 .u-section-1 {
  background-image: none;
}

.u-section-1 .u-sheet-1 {
  min-height: 745px;
}

.u-section-1 .u-image-1 {
  width: 888px;
  height: 744px;
  margin: 1px auto 1px 106px;
}

@media (max-width: 1199px) {
  .u-section-1 .u-image-1 {
    margin-left: 52px;
  }
}

@media (max-width: 991px) {
  .u-section-1 .u-sheet-1 {
    min-height: 605px;
  }

  .u-section-1 .u-image-1 {
    width: 720px;
    height: 604px;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .u-section-1 .u-sheet-1 {
    min-height: 454px;
  }

  .u-section-1 .u-image-1 {
    width: 540px;
    height: 453px;
  }
}

@media (max-width: 575px) {
  .u-section-1 .u-sheet-1 {
    min-height: 286px;
  }

  .u-section-1 .u-image-1 {
    width: 340px;
    height: 285px;
  }
}






.coachings-section {
  background-color: #eeeeee;
  padding: 40px 20px;
  font-family: 'Open Sans', sans-serif;
}

.coachings-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  align-items: flex-start;
}

.coachings-images {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.coachings-block {
  text-align: center;
}

.coachings-block img {
  width: 200px;             /* Augmenté depuis 160px */
  height: 200px;            /* Pour conserver la forme carrée */
  object-fit: contain;      /* Garde l’image entière sans la rogner */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  background-color: #eeeeee;
  display: block;
  margin: 0 auto;
}



.coachings-caption {
  background: rgba(240, 240, 240, 0.85);
  border-radius: 20px;
  padding: 6px 12px;
  margin-top: 5px;
  font-weight: 600;
  font-size: 15px;
}

.coachings-text {
  width: 65%;
}

.coachings-title {
  font-family: 'Great Vibes', cursive;
  font-size: 64px;
  color: #ff9900;
  margin-bottom: 20px;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.6),
    -1px -1px 0 #000000,
    1px -1px 0 #000000,
    -1px 1px 0 #000000,
    1px 1px 0 #000000;
}

.coachings-text h2.coachings-title {
  font-family: 'Great Vibes', cursive;
  font-size: 64px;
  color: #ff9900;
  margin: 0 0 20px 0;
  text-shadow:
    2px 2px 4px #000000,   /* ombre noire floutée */
    -1px -1px 0 #000000,   /* contour haut gauche */
    1px -1px 0 #000000,    /* contour haut droit */
    -1px 1px 0 #000000,    /* contour bas gauche */
    1px 1px 0 #000000;     /* contour bas droit */
}

.coachings-text {
  width: 65%;
  max-width: 500px;  /* empêche que le texte soit trop long */
  line-height: 1.6;
}


/* Responsive */
@media (max-width: 991px) {
  .coachings-container {
    flex-direction: column;
    align-items: center;
  }
  .coachings-images,
  .coachings-text {
    width: 100%;
  }
  .coachings-title {
    text-align: center;
  }
  .coachings-text p {
    text-align: center;
  }
}


