.accueil-methode-container {
  width: 100%;
  height: fit-content;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.accueil-methode-list {
  width: 90%;
  height: fit-content;

  display: flex;
  align-items: stretch; /* force tous les enfants à prendre la même hauteur */
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.accueil-methode-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  min-width: 300px;
  width: calc(30%);
  border: 2px solid #09166d;
 border-radius: 5px;
  position: relative;
  padding: 1rem;
  gap: 1rem;
}

.accueil-methode-logo {
    height: 80px;
    position: absolute;
    top: -25px;
    left: -25px;
    background-color: whitesmoke;
    border: 2px solid #09166d;
    padding: 10px;
    border-radius: 50%;
}

.accueil-methode-block-title {
    text-align: center;
    font-weight: bold;
}

.zone-container {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
margin-top: 2rem;
}

.zone-block {
    width: 80%;
    height: fit-content;
   box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
   padding: 1rem;
   display: flex;
   align-items: center;
   gap: 1rem;
}

.zone-block-logo {
    height: 100px;
}









/* separator */
.custom-shape-divider-top-1755009422 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: translateY(-1px);
}

.custom-shape-divider-top-1755009422 svg {
  position: relative;
  display: block;
  width: calc(144% + 1.3px);
  height: 63px;
}

.custom-shape-divider-top-1755009422 .shape-fill {
  fill: #09166d;
}



/* version mobile */

@media (max-width: 862px) {

.accueil-methode-list {


  gap: 1rem;
}


.zone-container {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
margin-top: 2rem;


}

.zone-block {

  
   flex-direction: column;
}


}