/* Importation d'une police lisible et moderne */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

/* Contenu recentré avec une largeur réduite */
.content {
  flex: 1;
  max-width: 750px;
  margin: 20px auto;
  padding: 25px;
  background: #ffffff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
}

/* Style des titres */
.content h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Style des paragraphes */
.content p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
  padding: 10px 20px;
}

/* Ligne de séparation fine et élégante */
.custom-line {
  width: 50%;
  margin: 20px auto;
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, #71c5d1, transparent);
}

/* Texte en gras */
strong {
  font-weight: 700;
  color: #000;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .content {
    max-width: 80%;
    padding: 15px;
  }

  .content h1 {
    font-size: 26px;
  }

  .content p {
    font-size: 16px;
    padding: 10px 15px;
  }

  .custom-line {
    width: 70%; /* Ajustement pour mobile */
  }
}
