
    .page-8ki {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f5f5f5;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-8ki__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 20px;
    }

    .page-8ki__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-8ki__section-title {
      text-align: center;
      color: #2980b9;
      font-size: 2.5em;
      margin-bottom: 30px;
      font-weight: bold;
      text-transform: uppercase;
    }

    .page-8ki__section-title--light {
      color: #f1c40f;
    }

    .page-8ki__text-center {
      text-align: center;
    }

    .page-8ki__hero-section {
      position: relative;
      color: #fff;
      text-align: center;
      padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
      background: linear-gradient(135deg, #3498db, #2980b9);
      overflow: hidden;
      border-radius: 0 0 15px 15px;
    }

    .page-8ki__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.3;
    }

    .page-8ki__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
    }

    .page-8ki__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      font-weight: 900;
      line-height: 1.2;
      color: #f1c40f; /* Yellow for brand */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8ki__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #ecf0f1;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-8ki__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }

    .page-8ki__button {
      display: inline-block;
      padding: 12px 25px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      border-radius: 50px;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      border: none;
    }

    .page-8ki__button--primary {
      background-color: #e74c3c; /* Red */
      color: #fff;
    }

    .page-8ki__button--primary:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    .page-8ki__button--secondary {
      background-color: #2ecc71; /* Green */
      color: #fff;
    }

    .page-8ki__button--secondary:hover {
      background-color: #27ae60;
      transform: translateY(-2px);
    }

    .page-8ki__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-8ki__product-card {
      background-color: #ecf0f1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8ki__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-8ki__product-card-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }

    .page-8ki__product-card-content {
      padding: 20px;
    }

    .page-8ki__product-card-title {
      font-size: 1.5em;
      color: #34495e;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8ki__product-card-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-8ki__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-8ki__promo-card {
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .page-8ki__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-8ki__promo-card-title {
      font-size: 1.6em;
      color: #e74c3c;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-8ki__promo-card-description {
      color: #666;
      margin-bottom: 15px;
    }

    .page-8ki__promo-card-button {
      display: inline-block;
      background-color: #3498db;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
    }

    .page-8ki__promo-card-button:hover {
      background-color: #2980b9;
    }

    .page-8ki__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-8ki__feature-item {
      background-color: #ecf0f1;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    }

    .page-8ki__feature-title {
      font-size: 1.3em;
      color: #2c3e50;
      margin-top: 15px;
      font-weight: bold;
    }

    .page-8ki__feature-description {
      color: #666;
    }

    .page-8ki__payment-grid,
    .page-8ki__provider-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 30px;
    }

    .page-8ki__logo-item {
      background-color: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 15px 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 80px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
      max-width: 180px;
      flex-basis: 150px;
      box-sizing: border-box;
    }

    .page-8ki__logo-item:hover {
      transform: translateY(-3px);
    }

    .page-8ki__logo-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    .page-8ki__faq-list {
      margin-top: 30px;
    }

    .page-8ki__faq-item {
      background-color: #ecf0f1;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    }

    .page-8ki__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: #3498db;
      color: #fff;
      cursor: pointer;
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-8ki__faq-question:hover {
      background-color: #2980b9;
    }

    .page-8ki__faq-question h3 {
      margin: 0;
      color: inherit;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8ki__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8ki__faq-item.active .page-8ki__faq-toggle {
      transform: rotate(45deg);
    }

    .page-8ki__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      background-color: #fefefe;
      color: #333;
    }

    .page-8ki__faq-item.active .page-8ki__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }

    .page-8ki__social-media {
      text-align: center;
      margin-top: 30px;
    }

    .page-8ki__social-link {
      display: inline-block;
      margin: 0 10px;
      font-size: 2em;
      color: #3498db;
      transition: color 0.3s ease, transform 0.3s ease;
      text-decoration: none;
    }

    .page-8ki__social-link:hover {
      color: #e74c3c;
      transform: translateY(-3px);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-8ki__section {
        padding: 30px 15px;
        margin-bottom: 15px;
      }

      .page-8ki__section-title {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-8ki__hero-title {
        font-size: 2.2em;
      }

      .page-8ki__hero-subtitle {
        font-size: 1.2em;
        margin-bottom: 20px;
      }

      .page-8ki__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-8ki__product-grid,
      .page-8ki__promo-grid,
      .page-8ki__feature-list {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .page-8ki__product-card-image {
        height: 200px;
      }

      .page-8ki__product-card-title {
        font-size: 1.3em;
      }

      .page-8ki__promo-card-title {
        font-size: 1.4em;
      }

      .page-8ki__feature-title {
        font-size: 1.1em;
      }

      .page-8ki__logo-item {
        flex-basis: 100px;
        height: 60px;
        padding: 10px;
        max-width: 120px;
      }

      .page-8ki__faq-question {
        padding: 15px;
        font-size: 1em;
      }

      .page-8ki__faq-question h3 {
        font-size: 1em;
      }

      .page-8ki__faq-answer {
        padding: 0 15px;
      }

      .page-8ki__faq-item.active .page-8ki__faq-answer {
        padding: 15px !important;
      }

      /* List item specific responsive requirements */
      .page-8ki__feature-list .page-8ki__feature-item,
      .page-8ki__product-grid .page-8ki__product-card,
      .page-8ki__promo-grid .page-8ki__promo-card {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
      }

      .page-8ki__product-grid,
      .page-8ki__promo-grid,
      .page-8ki__feature-list {
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box !important;
          padding-left: 0 !important;
          padding-right: 0 !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
      }

      .page-8ki__section p, .page-8ki__section li, .page-8ki__section h2, .page-8ki__section h3 {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
      }

      .page-8ki__logo-item {
          width: 100% !important; /* Ensure logos also wrap */
          max-width: 100% !important;
          box-sizing: border-box !important;
      }

      /* Image responsive requirements */
      .page-8ki img {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }

      .page-8ki__hero-background {
          max-width: 100% !important;
          height: auto !important;
          box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8ki__hero-title {
        font-size: 1.8em;
      }

      .page-8ki__hero-subtitle {
        font-size: 1em;
      }

      .page-8ki__button {
        padding: 8px 15px;
        font-size: 0.9em;
      }

      .page-8ki__section-title {
        font-size: 1.8em;
      }
    }
  