/* Conteneur général */
.pere-systeme {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 50px;
  background: #faf9f7; /* Beige très clair élégant */
  border: 1px solid #e0d8c3;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.8;
  color: #2c2c2c;
  position: relative;
}

/* Titre */
.pere-systeme h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 25px;
  color: #3a2f1d;
  position: relative;
}

/* Petite décoration sous le titre */
.pere-systeme h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #c6a86d; /* doré élégant */
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Texte */
.pere-systeme p {
  text-align: justify;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Première ligne en lettrine */
.pere-systeme p:first-of-type::first-letter {
  font-size: 2.5rem;
  font-weight: bold;
  float: left;
  margin-right: 6px;
  color: #c6a86d;
  font-family: "Playfair Display", serif;
}

/* Citation finale ou signature */
.pere-systeme .signature {
  text-align: right;
  font-style: italic;
  margin-top: 20px;
  color: #6b5b40;
}

.pere-systeme p:first-of-type::first-letter {
  font-size: 1.9rem;
  font-weight: bold;
  float: left;
  line-height: 0.9;
  margin: -2px 2px 0 0;
  color: #c6a86d;
  font-family: "Playfair Display", serif;
}


