:root {
  --color-main: #1f4a99;
  --color-secondary: #5e8db9;
  --color-text: #1f4a99;
  --color-bg: #ffffff;
}

/* Reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Garamond", "EB Garamond", "Times New Roman", serif;
}


body {
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
}

/* Header */
.header {
  text-align: center;
  padding: 20px;
  background-color: var(--color-bg);
}

.logo {
  max-width: 400px;
}



/* Hero */
.hero {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--color-bg);
}

.subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--color-main);
}

.hero-image {
  max-width: 400px;
  height: auto;
  border-radius: 8px;
}

/* Sections */
.section {
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
}

.section h2 {
  margin-bottom: 20px;
  color: var(--color-main);
  text-align: center;
}

.section h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--color-secondary);
}

.section p {
  margin-bottom: 15px;
}

/* Sections avec image */
.section-image {
  display: row;
  gap: 30px;
  align-items: center;
}

.section-image img {
  width: 40%;
  border-radius: 8px;
  text-align: center;
}

.section-image div {
  width: 60%;
}

/* Citation */
blockquote {
  font-style: italic;
  background: #f4f7fc;
  padding: 20px;
  border-left: 5px solid var(--color-main);
  margin-bottom: 20px;
  color: var(--color-text);
}

/* Footer */
.footer {
  background: var(--color-main);
  color: #ffffff;
  text-align: center;
  padding: 20px;
}

.footer a {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .section-image {
    flex-direction: column;
  }

  .section-image img,
  .section-image div {
    width: 100%;
  }
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 10px;
}

ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-main); /* #1f4a99 */
  font-size: 1.2rem;
  line-height: 1;
}
