.elementor-3573 .elementor-element.elementor-element-b4ff3c2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-1d5fcba */.services-section {
    background: #101010;
    color: #fff;
    padding: 60px 20px;
}

.container {
    max-width: 90%;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
    color: #61ce70;
    padding-top: 50px;
    
}

.section-intro {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto 40px;
    color: #ccc;

}

.service-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
     margin-top: 120px;
    gap: 30px;
    padding-bottom: 2px;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1 1 35%;
}


.service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #61ce70;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transition: box-shadow 0.5s ease-in-out;
}

.service-image img:hover {
    box-shadow: 0 0 30px 5px rgba(97, 206, 112, 0.8);
}


.service-text {
    flex: 1 1 50%;
}

.service-text h3 {
    color: #61ce70;
    font-size: 28px;
    margin-bottom: 15px;
}

.service-text p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 10px;
}

.service-text ul {
    list-style: none;
    padding: 0;

}

.service-text ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #ccc;
}

.service-text ul li::before {
    content: "✔";
    color: #61ce70;
    position: absolute;
    left: 0;
    top: 0;
}
/* Styles pour écrans moyens (tablettes) */
@media (max-width: 992px) {
  .service-block {
    flex-direction: column; /* empile image et texte */
    align-items: center;
    margin-top: 60px; /* moins d'espace vertical */
  }

  .service-block.reverse {
    flex-direction: column; /* supprimer inversion sur mobile */
  }

  .service-image {
    flex: none;
    width: 80%; /* image plus petite */
    max-width: 350px;
    margin-bottom: 20px;
  }

  .service-text {
    flex: none;
    width: 90%;
    text-align: center;
  }
}

/* Styles pour petits écrans (smartphones) */
@media (max-width: 576px) {
  .service-image {
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }

  .service-text {
    width: 100%;
    font-size: 14px;
  }

  .section-title {
    font-size: 28px;
    padding-top: 30px;
  }

  .service-text h3 {
    font-size: 22px;
  }
}


.service-text ul {
  list-style: none; /* Supprime la puce classique */
  padding-left: 0;
}

.service-text ul li {
  position: relative;
  padding-left: 30px; /* espace pour le SVG */
  margin-bottom: 8px;
  color: #ccc;
}

/* Ajoute un SVG check comme puce via background */
.service-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%2361ce70" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.285 6.708l-11.72 11.72-5.712-5.712 1.414-1.414 4.298 4.298 10.306-10.306z"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}/* End custom CSS */