
    /* Reset + layout */
    *, *::before, *::after { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }
    body { font-family: Arial, Helvetica, sans-serif; color: #222; line-height: 1.6; background: #fff; }

    /* Centered page container instead of styling <body> directly */
    .page { max-width: 900px; margin: 20px auto; padding: 0 20px; }

    h1 { color: #0A4F7A; }
    h2 { color: #0A4F7A; margin-top: 1.2em; }
    p { margin: 0.6em 0; }
    ul { margin: 0.4em 0 0.8em 1.2em; }
    .cta { margin-top: 1.2em; }
    .note { background: #FFF4E6; padding: 12px; border-left: 4px solid #F9690F; }
    .feature { margin-bottom: 0.6em; }

    img.banner { width: 100%; height: auto; margin-bottom: 1em; border-radius: 6px; display: block; }

    .responsive-table {
      width: 100%;
      border-collapse: collapse;
      margin: 1em 0;
      font-size: 1em;
      min-width: 300px;
    }
    .responsive-table th, .responsive-table td {
      border: 1px solid #ddd;
      padding: 0.75em 1em;
      text-align: center;
    }
    .responsive-table th {
      background-color: #f5f5f7;
      color: #222;
      font-weight: bold;
    }
    .responsive-table tr:nth-child(even) {
      background-color: #fafafc;
    }
    @media (max-width: 800px) {
      .responsive-table thead { display: none; }
      .responsive-table, .responsive-table tbody, .responsive-table tr, .responsive-table td { display: block; width: 100%; }
      .responsive-table tr { margin-bottom: 1.5em; border: 2px solid #eee; border-radius: 0.6em; background: #fff; box-shadow: 0 2px 10px 0 #eee; }
      .responsive-table td { text-align: left; padding: 0.7em 1em; position: relative; padding-left: 50%; border: none; border-bottom: 1px solid #eee; }
      .responsive-table td::before { content: attr(data-label); position: absolute; left: 1em; top: 0.7em; font-weight: bold; color: #444; width: 45%; text-align: left; white-space: nowrap; }
    }

    /* Optional: colored check/cross icons */
    .yes { color: #15b66a; font-weight: bold; }
    .no { color: #ca2222; font-weight: bold; }
    .deal-intro { font-family: Arial, Helvetica, sans-serif; color: #111; margin-bottom: 0.75em; }
    .deal-cta { display: inline-block; margin-top: 0.6em; padding: 0.5em 0.9em; background: #1f67d1; color: #fff; text-decoration: none; border-radius: 6px; font-weight: bold; }
    .deal-note { font-size: 0.95em; color: #333; margin-top: 0.4em; }
  