.contactez-section {
    padding: 40px 20px;
    background-color: #f5fbf7;
    display: flex;
    justify-content: center;
  }
  
  .contactez-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    flex-wrap: wrap-reverse; /* 👈 image à droite */
  }
  
  .contactez-content {
    max-width: 520px;
    text-align: right; /* 👉 aligne tout le texte à droite */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end; /* 👉 aligne tous les éléments sur la droite */
  }
  
  
  .contactez-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .contactez-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Aligne tout le bloc sur la droite */
    gap: 12px;
  }
  
  .contactez-points li {
    display: flex;
    flex-direction: row-reverse; /* ✅ Inverse ordre : texte puis icône */
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #333;
    text-align: right;
  }
  
  .contactez-points .material-icons-outlined {
    color: #28a745;
    font-size: 20px;
  }
  
  .contactez-illustration img {
    width: 250px;
    max-width: 100%;
    height: auto;
  }







  
.besoins-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    background-color: #f5fbf7;
  }
  
  .besoins-container {
    display: flex;
    align-items: flex-start; /* ✅ aligne le haut du texte et de l’image */
    gap: 50px;
    max-width: 1200px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .besoins-content {
    max-width: 520px;
    text-align: left; /* ✅ aligne tout le contenu à gauche */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  
  .besoins-illustration img {
    width: 200px;
    max-width: 100%;
    height: auto;
  }
  
  
  .besoins-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .besoins-points {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .besoins-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
  }
  
  .besoins-points .material-icons-outlined {
    color: #28a745;
    font-size: 20px;
  }

  
  
.intervention-section {
    padding: 40px 20px;
    background-color: #f5fbf7;
    display: flex;
    justify-content: center;
  }
  
  .intervention-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    flex-wrap: wrap-reverse; /* 👈 image à droite */
  }
  
  .intervention-content {
    max-width: 520px;
    text-align: right; /* 👉 aligne tout le texte à droite */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end; /* 👉 aligne tous les éléments sur la droite */
  }
  
  
  .intervention-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .intervention-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Aligne tout le bloc sur la droite */
    gap: 12px;
  }
  
  .intervention-points li {
    display: flex;
    flex-direction: row-reverse; /* ✅ Inverse ordre : texte puis icône */
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #333;
    text-align: right;
  }
  
  .intervention-points .material-icons-outlined {
    color: #28a745;
    font-size: 20px;
  }
  
  .intervention-illustration img {
    width: 280px;
    max-width: 100%;
    height: auto;
  }

  
 
.clientspace-section {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    background-color: #f5fbf7;
  }
  
  .clientspace-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .clientspace-illustration img {
    width: 250px;
    max-width: 100%;
    height: auto;
  }
  
  .clientspace-content {
    max-width: 520px;
    text-align: left;
  }
  
  .clientspace-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .clientspace-points {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .clientspace-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
  }
  
  .clientspace-points .material-icons-outlined {
    color: #28a745;
    font-size: 20px;
  }
   

@media screen and (max-width: 768px) {
  .contactez-section,
  .besoins-section,
  .intervention-section,
  .clientspace-section {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 15px;
    overflow: hidden;
  }

  .contactez-container,
  .besoins-container,
  .intervention-container,
  .clientspace-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    height: 50%;
    overflow: auto;
  }

  .contactez-content,
  .besoins-content,
  .intervention-content,
  .clientspace-content {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* 👈 centre la liste horizontalement */
  }

  .contactez-illustration img,
  .besoins-illustration img,
  .intervention-illustration img,
  .clientspace-illustration img {
    width: 20vh;
    height: auto;
  }

  /* ✅ Masquer les paragraphes <p> */
  .contactez-content p,
  .besoins-content p,
  .intervention-content p,
  .clientspace-content p {
    display: none !important;
  }

  /* ✅ Style des listes */
  .contactez-points,
  .besoins-points,
  .intervention-points,
  .clientspace-points {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center; /* centre la liste */
    gap: 12px;
  }

  .contactez-points li,
  .besoins-points li,
  .intervention-points li,
  .clientspace-points li {
    display: flex;
    flex-direction: row; /* ✅ icône à gauche */
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    text-align: left;
    justify-content: flex-start;
  }

  .contactez-points .material-icons-outlined,
  .besoins-points .material-icons-outlined,
  .intervention-points .material-icons-outlined,
  .clientspace-points .material-icons-outlined {
    color: #28a745;
    font-size: 20px;
  }
}
