
    @import url('inline-font1_1');
    body {
      margin: 0;
      padding: 0;
      font-family: 'Roboto', Arial, sans-serif;
      background: linear-gradient(135deg, #2f80ed 0%, #ff6a00 100%);
      color: #222;
      min-height: 100vh;
    }
    header {
      background: linear-gradient(90deg, #f7971e 0%, #ffd200 100%);
      padding: 24px 0 10px 0;
      text-align: center;
      position: relative;
    }
    .logo-area {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 10px;
    }
    .logo-area img {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      border: 2px solid #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.09);
    }
    .logo-area span {
      font-family: 'Montserrat', cursive;
      font-size: 2.4rem;
      font-weight: 700;
      color: #2f80ed;
      letter-spacing: 2px;
      background: linear-gradient(90deg, #2f80ed, #ff6a00, #ffd200, #2f80ed);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    nav {
      margin-top: 8px;
    }
    nav a {
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1rem;
      color: #fff;
      background: linear-gradient(90deg, #2f80ed, #ff6a00, #ffd200, #2f80ed);
      padding: 8px 20px;
      border-radius: 20px;
      margin: 0 8px;
      transition: background 0.3s;
      box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    }
    nav a:hover {
      background: linear-gradient(90deg, #ffd200, #ff6a00, #2f80ed, #ffd200);
      color: #2f80ed;
    }
    main {
      max-width: 900px;
      margin: 32px auto 0 auto;
      background: rgba(255,255,255,0.97);
      border-radius: 16px;
      box-shadow: 0 4px 32px rgba(0,0,0,0.13);
      padding: 32px 24px 40px 24px;
    }
    h1, h2, h3 {
      font-family: 'Montserrat', Arial, sans-serif;
      font-weight: 700;
      margin-top: 36px;
      margin-bottom: 16px;
      letter-spacing: 1px;
      background: linear-gradient(90deg, #ff6a00, #2f80ed, #ffd200, #ff6a00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block;
    }
    h1 { font-size: 2.3rem; }
    h2 { font-size: 1.55rem; }
    h3 { font-size: 1.15rem; }
    p {
      font-size: 1.07rem;
      line-height: 1.7;
      margin-bottom: 18px;
    }
    ul, ol {
      font-size: 1.07rem;
      margin-bottom: 18px;
    }
    .centered {
      text-align: center;
    }
    .responsive-img {
      width: 100%;
      max-width: 720px;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(44, 62, 80, 0.17);
      margin: 0 auto 20px auto;
      display: block;
    }
    .cta-btn {
      display: inline-block;
      background: linear-gradient(90deg, #2f80ed, #ff6a00, #ffd200, #2f80ed);
      color: #fff;
      font-family: 'Montserrat', Arial, sans-serif;
      font-size: 1.25rem;
      font-weight: 700;
      padding: 14px 34px;
      border: none;
      border-radius: 30px;
      margin: 18px auto 32px auto;
      text-decoration: none;
      transition: background 0.3s, color 0.3s;
      box-shadow: 0 3px 16px rgba(0,0,0,0.10);
      text-align: center;
    }
    .cta-btn:hover {
      background: linear-gradient(90deg, #ffd200, #ff6a00, #2f80ed, #ffd200);
      color: #2f80ed;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 28px;
      font-size: 1.05rem;
    }
    th, td {
      border: 1px solid #e0e0e0;
      padding: 10px 7px;
      text-align: left;
    }
    th {
      background: #f7f7f7;
      font-weight: 700;
    }
    footer {
      background: linear-gradient(90deg, #f7971e 0%, #ffd200 100%);
      color: #222;
      font-size: 1rem;
      padding: 25px 0 15px 0;
      text-align: center;
      border-top-left-radius: 18px;
      border-top-right-radius: 18px;
      margin-top: 60px;
    }
    .footer-links a {
      color: #2f80ed;
      font-weight: 700;
      margin: 0 14px;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover {
      color: #ff6a00;
    }
    @media (max-width: 700px) {
      main { padding: 18px 4vw 32px 4vw; }
      h1 { font-size: 1.5rem; }
      h2 { font-size: 1.1rem; }
      .logo-area span { font-size: 1.3rem; }
      nav a { font-size: 1rem; padding: 7px 10px; }
    }
  