main.container {
  max-width: 1200px;
  margin: 4rem 0 3rem; /* Enlève le centrage horizontal */
  padding: 1.5rem;
  flex-grow: 1;
}

/* Titres de section */
main.container .section-title {
  color: #59a1ff;
  margin: 1.5rem 0 1rem;
  font-size: 1.8rem;
}

/* Paragraphes et listes dans le conteneur */
main.container p,
main.container ul {
  margin-bottom: 1rem;
  color: #ddd;
}

/* Listes dans le conteneur */
main.container ul {
  padding-left: 2rem;
  list-style-type: disc;
}

/* Liens */
a {
  color: #59a1ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Grille de l’équipe */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* Carte membre équipe */
.team-member {
  background: #141a40;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #2979ff;
}

.team-member h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: #fff;
}

.team-member p {
  color: #bbb;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Titres et paragraphes généraux */
h3 {
  color: #aad4ff;
  margin-bottom: 0.5rem;
}

h4 {
  margin: 0.8rem 0 0.3rem 1rem;
  color: #88bbff;
}

p {
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
}
