/* Reset some basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    color: #003b71; /* dark blue */
    line-height: 1.4;
    background-color: #ffffff;
    text-align: center;
    padding: 20px;
  }
  
  header {
    margin-bottom: 20px;
  }
  
  .logo {
    max-width: 300px;
    height: auto;
  }
  
  main h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: normal;
  }
  
  .graphic img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 30px;
  }
  
  .message {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .message h2 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: normal;
  }
  
  .notice {
    font-size: 1.1rem;
    margin: 10px 0 20px;
  }
  
  .message p {
    margin-bottom: 15px;
  }
  
  .message h3 {
    margin-top: 20px;
    font-size: 1.1rem;
  }
  
  .signature {
    margin-top: 20px;
    font-style: italic;
  }