.big-service-section {
  position: relative;
  height: 500px; /* Hauteur de la section, ajustable */
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Ajoutez ici votre image en arrière-plan */
  background-image: url("image/im12.jpg");
  background-size: cover;
  opacity: 0.5; /* Réglez l'opacité selon votre choix */
}

.boxes-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column; /* Alignement vertical */
}

.service-box {
  width: 70%; /* Ajustez la largeur selon vos besoins */
  padding: 20px;
  margin: 10px;
  border-radius: 5px;
  background-color: #fff; /* Couleur de la boîte, modifiable */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre légère */
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-box h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 16px;
}
