/* CSS spécifique à la page Mentions Légales (section <main>) */

.mentions-legales {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #fffefc;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    font-family: "Open Sans", sans-serif;
    color: #3b2f2f;
    line-height: 1.7;
    font-size: 1.05rem;
  }
  
  .mentions-legales h2 {
    margin-top: 2rem;
    color: #5c2e2e;
    font-size: 1.4rem;
  }
  
  .mentions-legales p {
    margin-bottom: 1rem;
  }
  
  .mentions-legales a {
    color: #a12c2c;
    text-decoration: underline;
  }
  
  .mentions-legales a:hover {
    color: #751f1f;
  }
  