.prestations {
  padding: 50px 20px;
  background-color: #f8f8f8;
  flex: 1 1 calc(33.333% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px; /* espace entre les lignes */
}

/* Conteneur général */
.prestations-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Chaque prestation */
.prestation {
  flex: 1 1 calc(33.333% - 20px); /* 3 par ligne sur desktop */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Image uniformisée */
.prestation img {
  width: 100%;
  height: 300px; /* hauteur fixe */
  object-fit: cover; /* recadre proprement */
  border-radius: 8px;
  display: block;
}

/* Texte sous l'image */
.prestation p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.4;
}

/* Mobile : 1 par ligne */
@media (max-width: 768px) {
  .prestation {
    flex: 1 1 100%;
  }
}
