.services-section {
  padding: 50px 0;
  background: #fff;
}

.service-item {
  text-align: center;
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

.service-icon img {
  width: 75px;   /* ajuste la taille */
  height: 80px;  /* ajuste la taille */
  object-fit: couver;
}


.service-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.service-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 250px;
}
