/* Main section for the guarantee block */
#garantie{
  width: 100%;
  height:100px;
  position: relative;
  margin-top: 14%; /* Spacing above the section */
}

/* Container holding the guarantee items */
.container_gar{
  position: relative;
  width: 80%;
  margin-left: 10%; /* Centers the container */
  display: flex;
  gap:5%; /* Space between items */
  justify-content: center;
  align-items: center;
  z-index: 10;
}

/* Style for each child div inside the container */
#container_gar div{
  width: 20%;
  height:100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Section for the numbers */
#chiffre{
  margin-top: 10%; /* Adds top spacing */
}

/* Tablet / medium screens */
@media (max-width: 1280px){
  #garantie{
    margin-top: 200px; /* More spacing for layout adjustments */
  }
}
@media (max-width: 800px){
  #garantie{
    margin-top: 10%; /* More spacing for layout adjustments */
  }
}
/* Mobile screens */
@media (max-width: 500px){
  .container_gar{
    width: 80%;
    margin-left: 10%;
    flex-wrap: wrap; /* Allows elements to go to the next line */
  }
  #garantie{

  }
}