/* --- Déclaration de la police HostGrotesk (méthode locale) --- */
@font-face {
  font-family: 'HostGrotesk';
  src: url('../fonts/HostGrotesk-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'HostGrotesk';
  src: url('../fonts/HostGrotesk-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
}


:root {
  --primary-blue: #0056b3;
  --accent-red: #e31b23;
  --neutral-dark: #333;
  --neutral-light: #F3F8FF;
}

/* --- Application globale de la police --- */
body {
  font-family: 'HostGrotesk', sans-serif;
  color: #333;
  background: #F3F8FF;
}


/* SECTION MENTIONS LÉGALES */
.section.mentions-legales {
  background: var(--neutral-light);
  padding: 120px 0 60px;
}
.section.mentions-legales .section-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.section.mentions-legales h2 {
  /* La police est déjà héritée du body, mais on peut la laisser pour être explicite */
  font-family: 'HostGrotesk', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
  color: var(--neutral-dark);
}
.mentions-content h3 {
  color: var(--primary-blue);
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 10px;
}
.mentions-content h4 {
  color: var(--neutral-dark);
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 5px;
}
.mentions-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}
.mentions-content a {
  color: var(--primary-blue);
  text-decoration: none;
}
.mentions-content a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  .section.mentions-legales {
    padding: 140px 20px 60px;
  }
  .mentions-content h2 {
    font-size: 28px;
  }
}
