
    body {
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #e8f5fc;
      color: #024966;
    }
    .container {
      max-width: 980px;
      margin: 30px auto;
      background-color: #f7fcff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(2, 136, 209, 0.2);
      padding: 35px 40px;
    }
    h1 {
      text-align: center;
      font-size: 2.5rem;
      color: #026a9c;
      margin-bottom: 30px;
    }
    h2 {
      color: #0288d1;
      margin-bottom: 20px;
      font-weight: 600;
    }
    p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .intro {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
      margin-bottom: 40px;
    }
    .intro img {
      flex: 1 1 400px;
      max-width: 100%;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(2, 136, 209, 0.25);
    }
    .intro-text {
      flex: 1 1 500px;
    }
    .features {
      background-color: #d3e9fb;
      padding: 22px 25px;
      border-radius: 10px;
      margin-bottom: 40px;
    }
    .features ul {
      list-style: none;
      padding-left: 0;
    }
    .features li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 14px;
      font-size: 1.05rem;
    }
    .features li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #0288d1;
      font-weight: 700;
    }
    .business-benefits {
      background-color: #e0f3ff;
      padding: 20px;
      border-radius: 10px;
      margin-bottom: 40px;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      background-color: #e1f0ff;
      margin-bottom: 40px;
      border-radius: 8px;
      overflow: hidden;
    }
    th, td {
      padding: 14px 18px;
      border-bottom: 1px solid #b3d4fc;
      text-align: left;
    }
    th {
      background-color: #c3defd;
      color: #014a75;
      font-weight: 600;
    }
    .cta {
      text-align: center;
    }
    .cta a {
      background-color: #0288d1;
      color: #fff;
      padding: 14px 42px;
      border-radius: 35px;
      font-size: 1.2rem;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 6px 12px rgba(2, 136, 209, 0.4);
      transition: background-color 0.3s ease;
    }
    .cta a:hover {
      background-color: #0173a9;
    }
    @media (max-width: 768px) {
      .intro {
        flex-direction: column;
      }
      .intro img, .intro-text {
        flex: 1 1 100%;
      }
    }
  