.services-hero {
  text-align: center;
  padding: 4rem 1.5rem 2rem;
  max-width: 900px;
  margin: auto;
  font-family: helvetica-w01-roman;
  font-weight: bold;
  position: relative;
}

.services-hero h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #000000;
}

.services-hero p {
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.8;
}

/* Logo Row */
.services-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 1rem;
  background-color: #fef9f5;
}

.services-logos img {
  max-width: 250px;
  height: auto;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

/* Service Sections */
.fullwidth-services {
  display: flex;
  flex-direction: column;
}

.service-section {
  margin-bottom: 0rem;
}

.image-container {
  position: relative;
  width: 100%;
  height: 680px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info Box Overlay */
.info-box {
  position: absolute;
  top: 10%;
  left: 5%;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 8px;
  max-width: 400px;
  color: #003366;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-logo {
  max-width: 200px;
  margin-bottom: 1rem;
}

.info-box ul {
  margin: 1rem 0;
  padding-left: 1rem;
  list-style-type: disc;
}

.info-box li {
  margin-bottom: 0.8rem;
  font-weight: 500;
}

/* CTA Button */
.cta-button {
  background-color: #0057b8;
  color: white;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #004a9f;
}

/* Top-Right Label */
.corner-label {
  position: absolute;
  top: 2%;
  right: 2%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0057b8;
  border-radius: 4px;
}

/* Aligner l'info-box à gauche ou à droite alternativement */
.image-container.reverse .info-box {
  left: auto;
  right: 5%;
}

.image-container:not(.reverse) .info-box {
  left: 5%;
  right: auto;
}

/* Le conteneur qui doit avoir la hauteur pour que le sticky fonctionne */
.services-hero {
  position: relative;
}

.sticky-header {
  position: sticky;
  top: 80px;
  /* ajuste si ta navbar est plus grande */
  z-index: 10;
  background-color: #fefefe;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.sticky-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  color: #000;
  text-align: center;
}

.services-hero-text {
  text-align: center;
  max-width: 900px;
  margin: 5rem auto;
  font-family: helvetica-w01-roman;
  font-size: 1.1rem;
  color: #000;
  line-height: 1.8;
}

.services-section {
  position: relative;
  padding: 2rem 1rem;
  background: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .info-box {
    position: static;
    width: 100%;
    margin-top: -4px;
  }

  .image-container {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .corner-label {
    display: none;
  }

  .services-logos {
    flex-direction: column;
    gap: 1rem;
  }

  .info-logo {
    max-width: 160px;
  }

  .cta-button {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
}