/* ======================================
   FIDAL CONSEILS – PAGE À PROPOS
   ====================================== */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: white;
  background: linear-gradient(180deg, #0d5d2c, #9ec2ac);
}

/* ===== MAIN : colonne (photo au-dessus, texte dessous) ===== */
.main {
  max-width: 2000px;
  margin-top: 100px;
  margin-left: 40px;
  margin-right: 40px;/* centre le bloc sur la page */
  padding: 40px 40px 60px;        /* marge interne gauche/droite */
  text-align: left;               /* texte à gauche */
  display: flex;
  flex-direction: column;         /* IMPORTANT : empile les blocs */
  gap: 22px;
}

/* ===== PHOTO : centrée ===== */
.profil-photo {
  display: flex;
  justify-content: center;         /* centre horizontalement */
  width: 100%;
  margin: 10px 0 0;
}

.profil-photo img {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.9);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* ===== Sections texte ===== */
.section,
.content-section-qui-suis-je,
.content-section-domaines-accompagnement,
.content-section-deroulement {
  text-align: left;
}

.content-section-qui-suis-je p {
  line-height: 1.55;
  margin: 0 0 10px;
}

.content-section-domaines-accompagnement ul,
.content-section-deroulement ol {
  padding-left: 20px;
  margin: 10px 0 0;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .main {
    padding: 28px 18px 44px;
  }

  .profil-photo img {
    width: 160px;
    height: 160px;
  }
}