.services {
  width: 100%;
  padding: 60px 0;
  position: relative;

  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  z-index: 1;
}
.service {
display: flex;
  align-items: center;
  justify-content: space-between;

  max-width: 1100px;
  margin: 0 auto;

  position: relative;
  z-index: 2;

  
}

.service.reverse {
  flex-direction: row-reverse;
}

.service-img img {
  width: 100%;
  max-width: 480px;
  border-radius: 6px;
  object-fit: cover;
}

.service-content {
  max-width: 500px;
}

.service-content h3 {
  color: #000000; /* rouge rosé comme sur l’image */
  font-size: 22px;
  font-weight: 500;
}

.service-content .line {
  display: block;
  width: 60px;
  height: 2px;
  background: #000;
  margin-bottom: 15px;
}

.service-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}




@media (max-width: 768px) {
  .service,
  .service.reverse {
    flex-direction: column;
    text-align: center;
  }

  .service-content .line {
    margin: 10px auto 15px;
  }
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  filter: invert(1);
}