body {
    margin: 0;
    padding: 20px;
    font-family: 'Georgia', serif;
    background-color: white;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    box-sizing: border-box;
  }
  
  .container {
    max-width: 800px;
    width: 100%;
    padding: 0 1rem;
  }
  
  h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: bold;
    margin-bottom: 0.2em;
  }
  
  h2 {
    font-style: italic;
    font-weight: normal;
    color: #333;
    margin-top: 0;
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  }
  
  .highlight {
    color: #c62828;
    font-style: italic;
    font-size: clamp(1.5rem, 4.5vw, 2rem);
    font-weight: bold;
    margin: 1.2em 0;
  }
  
  p {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    line-height: 1.6;
    margin: 1em 0;
  }
  
  .italic {
    font-style: italic;
  }
  
  .email-placeholder {
    display: inline-block;
    margin-left: 10px;
    font-style: normal;
    letter-spacing: 1px;
    word-break: break-word;
  }
  
  /* Adaptation pour très petits écrans */
  @media (max-width: 400px) {
    body {
      padding: 10px;
    }
  
    .email-placeholder {
      display: block;
      margin-left: 0;
      margin-top: 0.5rem;
    }
  }
  