/* ----- RESET SIMPLE ----- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f0dfc0;
  padding: 20px;
}

/* ----- BLOCS ----- */
header, section, footer {
  background: #f5f2eb;
  padding: 30px;
  margin: 20px auto;
  max-width: 1000px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

/* ----- ENTÊTE ----- */
.site-header .brand {
  display: flex; gap: 18px; align-items: center; margin-bottom: 20px;
}
.logo { width: 120px; height: auto; }
.hero { width: 100%; border-radius: 10px; }

h1 { font-size: 2.2em; color: #0e2b2b; }
.subtitle { margin-top: 6px; font-size: 1.05em; color: #4a4a4a; }
.tagline { margin-top: 8px; }

/* ----- TITRES ----- */
h2 { margin-bottom: 15px; font-size: 1.8em; color: #4fada8; }
h3 { margin: 15px 0 6px; font-size: 1.25em; color: #0e2b2b; }

/* ----- TEXTE ----- */
p { margin-bottom: 14px; font-size: 1.05em; }
p2 { margin-bottom: 14px; font-size: 1.25em; }
p3 { margin-bottom: 14px; font-size: 1.25em; color: #4fada8; }
.note { font-style: italic; color: #555; }

/* ----- LISTES ----- */
ul { margin-left: 22px; margin-bottom: 14px; }
ul li { margin-bottom: 6px; }

.columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 800px) {
  .columns { grid-template-columns: 1fr; }
}

.checklist li { list-style: none; }
.checklist li::before {
  content: "• ";
  color: #2c3e70;
  font-weight: bold;
}

.section-image { width: 100%; border-radius: 10px; margin-top: 10px; }

/* ----- FOOTER ----- */
.site-footer { text-align: center; }
.site-footer a { color: #2c3e70; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .legal { margin-top: 8px; font-size: 0.93em; color: #666; }
