/* CSS spécifique à la page Notre Démarche (section <main>) */

.demarche-container {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #fffdfc; /* zone blanche lisible mais pas full main */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-family: "Open Sans", sans-serif;
    color: #3b2f2f;
    line-height: 1.7;
  }
  
  /* Paragraphes */
  .demarche-container p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  
  /* Listes */
  .demarche-container ul {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .demarche-container ul li {
    margin-bottom: 0.8rem;
  }
  
  /* Image finale */
  .demarche-container img {
    display: block;
    max-width: 100%;
    margin: 2rem auto 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  