/* Ligne décorative */
.section-divider {
    width: 300px;
    height: 4px;
    background-color: #b58863;
    margin: 30px auto;
    border: none;
    border-radius: 2px;
  }
  
  /* Effet fade-in */
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Photo équipe */
  .team-photo {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  

  