/* Styles pour les pages légales (mentions légales et politique de confidentialité) */

body {
  background-color: #f8f9fa;
}

main {
  max-width: 1200px;
  margin: 120px auto 0;
  padding: 3rem 2rem;
}

/* En-tête de page */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1,
main > h1 {
  font-size: 2.5rem;
  color: #8b0000;
  margin-bottom: 1rem;
}

/* Sections de contenu */
.content-section,
section {
  background: white;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.content-section h2,
section h2 {
  font-size: 1.8rem;
  color: #8b0000;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #8b0000;
  padding-bottom: 0.5rem;
  text-align: left;
}

.content-section h3,
section h3 {
  font-size: 1.3rem;
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.content-section p,
section p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Blocs d'information */
.info-block {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid #8b0000;
}

.info-block strong {
  color: #8b0000;
}

/* Informations de contact */
.contact-info {
  margin: 1rem 0;
  line-height: 2;
}

/* Liens externes */
.external-link {
  color: #8b0000;
  text-decoration: underline;
  transition: opacity 0.3s;
}

.external-link:hover {
  opacity: 0.7;
}

section a[href^="http"] {
  color: #8b0000;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  main {
    margin-top: 100px;
    padding: 2rem 1rem;
  }

  .page-header h1,
  main > h1 {
    font-size: 2rem;
  }

  .content-section h2,
  section h2 {
    font-size: 1.5rem;
  }

  .content-section,
  section {
    padding: 1.5rem;
  }
}
