
    /* Base styles for the page */
    .page-8k8-4 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-bottom: 40px; /* Space for footer */
      padding-top: 10px; /* Small decorative top padding, assuming body already has header offset */
    }

    .page-8k8-4__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-8k8-4__hero-section {
      position: relative;
      background-color: #0d47a1; /* Dark blue background */
      color: #fff;
      padding: 80px 0;
      text-align: center;
      overflow: hidden;
      margin-bottom: 40px;
    }

    .page-8k8-4__hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Slightly transparent overlay */
      z-index: 1;
    }

    .page-8k8-4__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-8k8-4__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      line-height: 1.2;
      color: #fff; /* Ensure good contrast */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-4__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #e0e0e0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-4__cta-button {
      display: inline-block;
      background-color: #ffc107; /* Bright yellow/gold */
      color: #333;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-4__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

    /* Section Styling */
    .page-8k8-4__section {
      background-color: #ffffff;
      padding: 40px 0;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-4__section--dark {
      background-color: #212529; /* Darker background for contrast */
      color: #f8f9fa;
    }

    .page-8k8-4__section-title {
      font-size: 2.5em;
      color: #0d47a1;
      text-align: center;
      margin-bottom: 30px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-4__section--dark .page-8k8-4__section-title {
      color: #ffc107;
    }

    .page-8k8-4__section-description {
      font-size: 1.1em;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Features/Steps Grid */
    .page-8k8-4__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-4__grid-item {
      background-color: #f1f8e9; /* Light green for steps */
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-4__section--dark .page-8k8-4__grid-item {
      background-color: #343a40;
      color: #f8f9fa;
    }

    .page-8k8-4__grid-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-4__grid-item-icon {
      width: 250px; /* Min size 200x200px */
      height: auto;
      margin: 0 auto 20px auto; /* Center image */
      border-radius: 8px;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box;
      display: block; /* Ensure it takes full width for centering */
    }

    .page-8k8-4__grid-item-title {
      font-size: 1.5em;
      color: #0d47a1;
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-4__section--dark .page-8k8-4__grid-item-title {
      color: #ffc107;
    }

    .page-8k8-4__grid-item-description {
      font-size: 1em;
      color: #555;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-4__section--dark .page-8k8-4__grid-item-description {
      color: #ced4da;
    }

    /* Promotions Section */
    .page-8k8-4__promo-card {
      background-color: #fff3e0; /* Light orange/yellow */
      border-left: 5px solid #ff9800;
      padding: 25px;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-8k8-4__promo-title {
      font-size: 1.8em;
      color: #ff9800;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-4__promo-description {
      font-size: 1.1em;
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-4__promo-cta {
      display: inline-block;
      background-color: #0d47a1;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-4__promo-cta:hover {
      background-color: #083372;
    }

    /* Payment and Provider Logos */
    .page-8k8-4__logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-4__logo-item {
      padding: 15px;
      background-color: #f0f0f0;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      max-width: 180px; /* Control max width for logos */
      width: 100%;
    }

    .page-8k8-4__logo-image {
      max-width: 100%;
      height: 80px; /* Fixed height for consistency, auto width */
      object-fit: contain;
      max-height: 100%; /* Ensure it fits */
      box-sizing: border-box;
    }

    /* FAQ Section */
    .page-8k8-4__faq-section {
      padding: 40px 0;
      background-color: #e3f2fd; /* Light blue background */
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-4__faq-item {
      background-color: #ffffff;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
      box-sizing: border-box;
    }

    .page-8k8-4__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #bbdefb; /* Slightly darker blue for question header */
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #0d47a1;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-4__faq-question h3 {
      margin: 0;
      font-size: 1.2em; /* Match parent font size */
      pointer-events: none; /* Prevent h3 from blocking click */
      color: #0d47a1; /* Ensure contrast */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-4__faq-question:hover {
      background-color: #90caf9;
    }

    .page-8k8-4__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-8k8-4__faq-item.active .page-8k8-4__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or use a '-' */
    }

    .page-8k8-4__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #ffffff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #333;
      opacity: 0;
      font-size: 1em;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-8k8-4__container {
        padding: 0 15px;
      }

      .page-8k8-4__hero-section {
        padding: 60px 0;
      }

      .page-8k8-4__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-4__hero-subtitle {
        font-size: 1.1em;
      }

      .page-8k8-4__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-8k8-4__section-title {
        font-size: 2em;
      }

      .page-8k8-4__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .page-8k8-4__grid {
        grid-template-columns: 1fr; /* Stack items */
      }

      .page-8k8-4__grid-item {
        padding: 25px;
        width: 100% !important; /* Ensure full width */
        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-8k8-4__grid-item-description,
      .page-8k8-4__grid-item-title {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-4__grid-item-title {
        font-size: 1.3em;
      }

      .page-8k8-4__promo-card {
        padding: 20px;
      }

      .page-8k8-4__promo-title {
        font-size: 1.5em;
      }

      .page-8k8-4__logo-grid {
        gap: 15px;
      }

      .page-8k8-4__logo-item {
        width: calc(50% - 15px); /* Two logos per row */
        max-width: calc(50% - 15px);
        padding: 10px;
        height: auto;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-4__logo-image {
        max-width: 100% !important;
        height: auto !important;
        max-height: 60px !important; /* Smaller height for mobile logos */
        box-sizing: border-box !important;
      }

      /* FAQ Mobile Adjustments */
      .page-8k8-4__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-8k8-4__faq-question h3 {
        font-size: 1.1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-8k8-4__faq-answer {
        padding: 0 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      .page-8k8-4__faq-item.active .page-8k8-4__faq-answer {
        padding: 15px 20px !important;
      }
    }

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

      .page-8k8-4__hero-subtitle {
        font-size: 1em;
      }

      .page-8k8-4__section-title {
        font-size: 1.8em;
      }

      .page-8k8-4__logo-item {
        width: 100% !important; /* One logo per row */
        max-width: 100% !important;
      }
    }
  