footer {
  background-color: #ffffff;
  padding: 20px 0;
  font-family: "Poppins", sans-serif;
  color: #000000;
  box-shadow: inset 0px 0px 67px 7px rgba(0,0,0,0.1), 0px 10px 15px -3px rgba(0,0,0,0.1);
}

.footer-wrapper {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* Permet aux blocs de s'ajuster sur plusieurs lignes si nécessaire */
  justify-content: space-between; /* Espace égal entre les blocs */
  align-items: flex-start;
}

.footer-logo-container {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.footer-logo {
  width: 200px; /* Ajustez selon vos besoins */
  display: block;
  margin: 0 auto;
}

.footer-logo-text {
  text-align: center;
   font-size: 12px;
}

.footer-block, .footer-block2 {
  flex: 1 1 100px; /* Permet aux blocs de prendre au moins 300px et de se répartir l'espace disponible */
  margin: 15px; /* Marge uniforme entre les blocs */
  color: #000000;
}
/*adresse */
.footer-block h3, .footer-block2 h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
    color: #000000;
}
/*contact texte */
.footer-block h2 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
    color: #000000;
}

.footer-block ul, .footer-block2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center; /* Centrer les éléments de la liste */

}

.footer-block ul li, .footer-block2 ul li {
  margin-bottom: 5px;
}

.footer-block ul li a, .footer-block2 ul li a {
  color: #097020;
  text-decoration: none;
}

.footer-bottom {
  color: #000000;
  text-decoration: none;
  font-size: 11px;
  text-align: center;
  margin: 35px;
  padding: 15px;
}

@media screen and (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-block, .footer-block2 {
    width: 100%;
    margin: 15px 0;
  }
}
