.structure-organigramme {
  font-family: 'Segoe UI', sans-serif;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.bloc-haut {
  text-align: center;
  font-weight: bold;
  padding: 10px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: white;
}

.conseil-admin {
  background-color: #c0392b;
  font-size: 1.3em;
}

.direction-generale {
  background-color: #2c3e50;
  font-size: 1.2em;
}

.ligne-services {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
}

.carte-service {
  background-color: #3498db;
  color: white;
  padding: 10px;
  border-radius: 6px;
  width: 30%;
  text-align: center;
}

.ligne-directions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.carte-direction {
  background-color: #ecf0f1;
  border-left: 5px solid #2c3e50;
  padding: 15px;
  border-radius: 6px;
}

.titre-direction {
  font-weight: bold;
  margin-bottom: 10px;
  color: #2c3e50;
}

.liste-divisions {
  list-style: none;
  padding-left: 0;
}

.liste-divisions li {
  margin-bottom: 6px;
  padding-left: 10px;
  border-left: 3px solid #27ae60;
}