@import url(font.css);
    /* ---------- Base ---------- */
    body {
      font-family: "Outfit", sans-serif;
      margin: 0;
      background: #ffffff;
      font-size: 14px;
      line-height: 1.6;
    }
    
    a {
      color: #243a5e;
      text-decoration: none;
    }
    
    a:hover {
      text-decoration: underline;
    }
    
    /* ---------- Header ---------- */
    .site-header {
      background: #eef3fb;
      border-bottom: 1px solid #c9d6ea;
    }
    
    .site-inner {
      max-width: 1000px;
      margin: auto;
      padding: 10px 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .site-logo {
      font-size: 16px;
      font-weight: 600;
      color: #243a5e;
    }
    
    .site-nav a {
      margin-left: 14px;
      font-size: 13px;
    }
    
    /* ---------- Layout ---------- */
    main {
      max-width: 1000px;
      margin: auto;
      padding: 18px 14px;
      background: #ffffff;
    }
    
    section {
      margin-bottom: 24px;
    }
    
    /* ---------- Typography ---------- */
    h1 {
      font-size: 22px;
      margin: 0 0 10px;
    }
    
    h2 {
      font-size: 17px;
      margin: 0 0 8px;
      border-left: 4px solid #c9d6ea;
      padding-left: 8px;
    }
    
    p {
      margin: 0 0 10px;
    }
    
    ul {
      margin: 6px 0 0 18px;
      padding: 0;
    }
    
    li {
      margin-bottom: 6px;
    }
    
    /* ---------- Info Box ---------- */
    .box {
      background: #eef3fb;
      border: 1px solid #c9d6ea;
      border-radius: 10px;
      padding: 14px;
    }
    
    .facts {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 10px;
      font-size: 13px;
    }
    
    /* ---------- Footer ---------- */
    footer {
      border-top: 1px solid #c9d6ea;
      background: #eef3fb;
      font-size: 12px;
      color: #4b5563;
      text-align: center;
      padding: 14px;
    }