@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@600&display=swap');

body {
  font-family: 'Geologica', Arial, sans-serif;
  font-weight: 600;
  background: #fafaf8;
  margin: 0;
  padding: 0;
  color: #222;
}

header {
  text-align: center;
  padding: 2em 0 1em 0;
}

header h1 {
  color: #FF7E00;
  font-size: 2.3em;
  margin-bottom: 0.3em;
  font-weight: 600;
}

header h2 {
  color: #FF7E00;
  font-size: 1.5em;
  margin-top: 0;
  font-weight: 600;
}

.logo-main {
  display: block;
  margin: 1.5em auto 1em auto;
  max-width: 220px;
  border-radius: 8px;
}

.logo-petit {
  display: block;
  margin: 0 auto 2em auto;
}

.intro {
  max-width: 700px;
  margin: 1.5em auto;
  font-size: 1.1em;
  background: #fff;
  border-radius: 6px;
  padding: 2em 2em 1.2em 2em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-weight: 600;
}

ul.options {
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-bottom: 1.8em;
}

ul.options li {
  margin-bottom: 1.3em;
  padding-left: 2em;
  position: relative;
  font-weight: 600;
}

ul.options li:before {
  content: "✔";
  color: #91CF50;
  font-size: 1.3em;
  position: absolute;
  left: 0;
  top: 0;
}

ul.options a {
  text-decoration: underline;
  color: #00AFEF;
  font-weight: 600;
  transition: color 0.2s;
}

ul.options a:hover {
  color: #007ea6;
}

.pdf-label {
  color: #91CF50;
}

.italic {
  font-style: italic;
}

.contact {
  text-align: center;
  font-size: 1.05em;
  color: #555;
  margin: 2em 0 1em 0;
  font-weight: 600;
}

.notes {
  font-size: 0.99em;
  color: #444;
  margin: 2.5em auto 1em auto;
  max-width: 700px;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .intro {
    padding: 1em 0.7em 1em 0.7em;
  }
  header h1 { font-size: 1.3em; }
  header h2 { font-size: 1em; }
  .contact, .notes { font-size: 0.97em; }
}

.lang-switch {
  text-align: center;
  margin: 0 0 1.7em 0;
}

.lang-switch img {
  vertical-align: middle;
  width: 52px;
  height: 27px;
  margin: 0 8px;
  border-radius: 4px;
}