/* Reset and basic styling */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
  }
  
  /* Center content */
  header, section {
    max-width: 700px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  header h1 {
    margin-bottom: 0;
    font-size: 2.5rem;
  }
  
  header p {
    margin-top: 8px;
    color: #555;
  }
  
  h2 {
    border-bottom: 2px solid #ddd;
    padding-bottom: 4px;
  }
  
  /* Links list */
  #links ul {
    list-style: none;
    padding: 0;
  }
  
  #links ul li {
    margin: 8px 0;
  }
  
  #links a {
    text-decoration: none;
    color: #0077ff;
    font-weight: 500;
  }
  
  #links a:hover {
    text-decoration: underline;
  }
  