@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
    :root {
      --primary: #0a2b6c;
      --secondary: #1e90ff;
      --accent: #ffb300;
      --background: #f6faff;
      --text-main: #0a2b6c;
      --text-light: #ffffff;
      --shadow: 0 4px 12px rgba(10, 43, 108, 0.12);
      --border: #e3eaf6;
    }
    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: var(--background);
      color: var(--text-main);
      line-height: 1.6;
    }
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 30px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      box-shadow: var(--shadow);
      color: var(--text-light);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .logo {
      font-weight: 700;
      font-size: 28px;
      letter-spacing: 2px;
      cursor: pointer;
      user-select: none;
      text-shadow: 0 0 6px rgba(255,255,255,0.7);
      display: flex;
      align-items: center;
    }
    .logo img {
      height: 38px;
      width: auto;
      display: block;
    }
    nav {
      display: flex;
      flex-direction: row;
      gap: 0;
    }
    nav button {
      margin-left: 16px;
      padding: 10px 18px;
      border: none;
      background: var(--background);
      color: var(--primary);
      font-weight: 600;
      border-radius: 30px;
      cursor: pointer;
      transition: background 0.3s, color 0.3s;
      font-size: 15px;
      box-shadow: 0 2px 5px rgba(10, 43, 108, 0.10);
    }
    nav button:hover {
      background: var(--secondary);
      color: var(--text-light);
      box-shadow: 0 4px 12px rgba(30, 144, 255, 0.18);
    }
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 2rem;
      color: var(--text-light);
      cursor: pointer;
      margin-left: 18px;
      z-index: 1100;
    }
    @media (max-width: 700px) {
      header {
        flex-direction: row;
        align-items: center;
        padding: 12px 8px;
        gap: 0;
      }
      .logo {
        justify-content: flex-start;
        margin-bottom: 0;
      }
      .nav-toggle {
        display: block;
      }
      nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 220px;
        background: linear-gradient(180deg, var(--primary), var(--secondary));
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 70px 18px 18px 18px;
        box-shadow: -2px 0 16px rgba(10,43,108,0.10);
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(.4,2,.6,1);
        z-index: 1050;
      }
      nav.open {
        transform: translateX(0);
      }
      nav button {
        margin: 0 0 18px 0;
        width: 100%;
        font-size: 16px;
      }
      .nav-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10,43,108,0.18);
        z-index: 1040;
      }
      .nav-overlay.active {
        display: block;
      }
    }
    @media (max-width: 480px) {
      nav {
        width: 98vw;
        padding: 60px 8vw 18px 8vw;
      }
      nav button {
        font-size: 15px;
      }
    }
    a {
        text-decoration: none;
        color: #b21717;
    }
    main {
      max-width: 700px;
      margin: 60px auto 40px;
      padding: 0 20px;
      text-align: center;
    }
    h1 {
      font-size: 38px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--primary);
      text-shadow: 1px 1px 4px rgba(10,43,108,0.10);
    }
    .download-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      flex-wrap: nowrap;
      justify-content: flex-start;
      border: 2.5px dashed var(--secondary);
      border-radius: 32px;
      padding: 32px 0 28px 0;
      background: #fafdff;
      box-shadow: 0 4px 18px rgba(30,144,255,0.06);
      margin: 36px 0 28px 0;
    }
    .download-btn {
      background: var(--text-light);
      border-radius: 14px;
      box-shadow: var(--shadow);
      padding: 18px 25px;
      width: 100%;
      max-width: 320px;
      text-decoration: none;
      color: var(--primary);
      font-weight: 600;
      font-size: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s;
      user-select: none;
      border: 1px solid var(--border);
    }
    .download-btn:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 25px rgba(30, 144, 255, 0.18);
      color: var(--secondary);
      border-color: var(--secondary);
    }
    .download-btn img {
      width: 48px;
      margin-bottom: 10px;
      filter: drop-shadow(0 1px 1px rgba(10,43,108,0.08));
    }
    footer {
      background: var(--primary);
      color: var(--text-light);
      text-align: center;
      padding: 22px 10px 18px 10px;
      font-size: 1.05em;
      letter-spacing: 0.5px;
      border-top: 2px solid var(--secondary);
      box-shadow: 0 -2px 12px rgba(10,43,108,0.07);
      margin-top: 40px;
    }
    .info-section {
      background: #fafdff;
      border: 1.5px solid var(--border);
      border-radius: 22px;
      box-shadow: 0 2px 10px rgba(30,144,255,0.07);
      margin: 32px auto 0 auto;
      padding: 26px 22px 18px 22px;
      max-width: 700px;
      text-align: left;
    }
    .info-section h2 {
      color: var(--primary);
      font-size: 1.35em;
      font-weight: 700;
      margin-bottom: 12px;
      text-shadow: 1px 1px 4px rgba(10,43,108,0.07);
    }
    .info-section h3 {
      color: var(--secondary);
      font-size: 1.1em;
      margin: 18px 0 8px 0;
      font-weight: 600;
    }
    .info-list {
      list-style: disc inside;
      margin: 0 0 10px 0;
      padding-left: 16px;
      color: var(--primary);
      font-size: 1.08em;
    }
    .info-step {
      margin-bottom: 18px;
    }
    .info-step ol {
      margin: 0 0 0 18px;
      padding-left: 0;
      color: var(--primary);
      font-size: 1.05em;
    }
    .info-step li {
      margin-bottom: 7px;
      line-height: 1.6;
    }
    @media (max-width: 700px) {
      .info-section {
        padding: 16px 8px 12px 8px;
        max-width: 98vw;
      }
    }
    @media (max-width: 480px) {
      .info-section {
        font-size: 0.97em;
        padding: 10px 4vw 8px 4vw;
      }
      .info-section h2 {
        font-size: 1.1em;
      }
      .info-section h3 {
        font-size: 1em;
      }
    }