
body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
  }
  
  header {
    background: #0b416b;
    color: white;
    padding: 1rem;
    text-align: center;
  }
  
  section {
    padding: 1rem 2rem;
    background: white;
    margin: 1rem auto;
    max-width: 800px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  h1, h2 {
    margin-top: 0;
  }
  
  ul {
    list-style-type: square;
    padding-left: 1.5rem;
  }
  
  a {
    color: #0b416b;
    text-decoration: none;
  }
  
  footer {
    text-align: center;
    padding: 1rem;
    background: #eee;
    font-size: 0.9rem;
  }
  