/* ========== A-PROPOS.HTML : STYLES DÉDIÉS ========== */

/* Fond gris clair global */
body {
  background-color: #0a245e;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* HEADER */
header {
  background-color: #0a245e;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffffff;
}

header p {
  font-size: 1.2rem;
  color: #ffffff;
}

/* Lien retour */
header a {
  display: inline-block;
  margin-top: 15px;
  background-color: #0077b6;
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

header a:hover {
  background-color: #023e8a;
}

/* CONTENU PRINCIPAL */
main {
  padding: 60px 20px;
}

/* Section globale */
section {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

/* Titres de section */
section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0077b6;
}

/* Paragraphes */
section p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Listes (centres d’intérêt par ex.) */
section ul {
  margin-top: 10px;
  padding-left: 20px;
  list-style-type: disc;
}

section li {
  font-size: 1rem;
  margin-bottom: 8px;
}

/* FOOTER */
footer {
  background-color: #0a245e;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #ffffff;
}
