
    :root {
      --page-8k8-apk__primary-color: #007bff; /* A deep blue for branding */
      --page-8k8-apk__secondary-color: #6c757d; /* Grey for secondary elements */
      --page-8k8-apk__accent-color: #28a745; /* Green for success/highlights */
      --page-8k8-apk__text-color: #333333;
      --page-8k8-apk__background-color: #f8f9fa;
      --page-8k8-apk__white: #ffffff;
      --page-8k8-apk__light-grey: #e9ecef;
      --page-8k8-apk__border-color: #dee2e6;
    }

    .page-8k8-apk {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-apk__text-color);
      background-color: var(--page-8k8-apk__background-color);
      padding-top: var(--header-offset, 122px); /* Fallback for header spacing */
    }

    .page-8k8-apk__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--page-8k8-apk__white);
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-apk__section--alt {
      background-color: var(--page-8k8-apk__light-grey);
    }

    .page-8k8-apk__container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-8k8-apk__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, var(--page-8k8-apk__primary-color), #0056b3);
      color: var(--page-8k8-apk__white);
      margin-bottom: 20px;
      border-radius: 8px;
      margin-left: auto;
      margin-right: auto;
      max-width: 1200px;
      padding-top: 10px; /* Small decorative top padding, assuming body handles main offset */
    }

    .page-8k8-apk__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: var(--page-8k8-apk__white);
    }

    .page-8k8-apk__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-apk__cta-button {
      display: inline-block;
      background-color: var(--page-8k8-apk__accent-color);
      color: var(--page-8k8-apk__white);
      padding: 15px 30px;
      font-size: 1.1em;
      font-weight: bold;
      border-radius: 50px;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-apk__cta-button:hover {
      background-color: #218838;
    }

    .page-8k8-apk__image-wrapper {
      margin: 20px auto;
      text-align: center;
      overflow: hidden;
      border-radius: 8px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-apk__image-wrapper img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

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

    .page-8k8-apk__feature-item {
      background-color: var(--page-8k8-apk__white);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-apk__feature-icon {
      margin-bottom: 15px;
      width: 200px; /* Min size */
      height: 200px; /* Min size */
      object-fit: contain;
      border-radius: 8px;
    }

    .page-8k8-apk__feature-title {
      font-size: 1.4em;
      color: var(--page-8k8-apk__primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-apk__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-8k8-apk__step-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
      background-color: var(--page-8k8-apk__light-grey);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
      box-sizing: border-box;
    }

    .page-8k8-apk__step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-apk__primary-color);
      background-color: var(--page-8k8-apk__white);
      border-radius: 50%;
      width: 45px;
      height: 45px;
      min-width: 45px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-apk__step-content h3 {
      font-size: 1.3em;
      color: var(--page-8k8-apk__primary-color);
      margin-top: 0;
      margin-bottom: 8px;
    }

    .page-8k8-apk__game-providers {
      text-align: center;
      margin-top: 30px;
    }

    .page-8k8-apk__provider-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
    }

    .page-8k8-apk__provider-logo {
      width: 200px; /* Min size */
      height: 100px; /* Min size */
      object-fit: contain;
      background-color: var(--page-8k8-apk__white);
      padding: 10px;
      border-radius: 6px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-apk__faq-section {
      margin-top: 40px;
    }

    .page-8k8-apk__faq-item {
      background-color: var(--page-8k8-apk__white);
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      overflow: hidden;
      border: 1px solid var(--page-8k8-apk__border-color);
    }

    .page-8k8-apk__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--page-8k8-apk__primary-color);
      color: var(--page-8k8-apk__white);
      cursor: pointer;
      user-select: none;
      border-radius: 8px 8px 0 0;
      transition: background-color 0.3s ease;
    }

    .page-8k8-apk__faq-item:last-child .page-8k8-apk__faq-question {
        border-radius: 8px; /* If only one item, or last item of list */
    }

    .page-8k8-apk__faq-item.active .page-8k8-apk__faq-question {
        border-radius: 8px 8px 0 0;
    }

    .page-8k8-apk__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      pointer-events: none; /* Prevents text selection from interfering with click */
      color: var(--page-8k8-apk__white);
    }

    .page-8k8-apk__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevents icon from interfering with click */
      transition: transform 0.3s ease;
      color: var(--page-8k8-apk__white);
    }

    .page-8k8-apk__faq-item.active .page-8k8-apk__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an 'x' or minus sign */
    }

    .page-8k8-apk__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: var(--page-8k8-apk__white);
      color: var(--page-8k8-apk__text-color);
      border-top: 1px solid var(--page-8k8-apk__border-color);
    }

    .page-8k8-apk__faq-item.active .page-8k8-apk__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-apk {
        padding-top: var(--header-offset-mobile, 80px); /* Adjust for mobile header offset */
      }

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

      .page-8k8-apk__hero-description {
        font-size: 1em;
      }

      .page-8k8-apk__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-apk__section {
        padding: 30px 15px;
        margin-left: 10px;
        margin-right: 10px;
      }

      .page-8k8-apk__feature-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-apk__feature-item,
      .page-8k8-apk__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-apk__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .page-8k8-apk__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-8k8-apk__faq-question {
        padding: 12px 15px;
      }

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

      .page-8k8-apk__faq-toggle {
        font-size: 1.5em;
      }

      .page-8k8-apk__faq-answer {
        padding: 15px !important;
      }

      .page-8k8-apk__image-wrapper img,
      .page-8k8-apk__feature-icon,
      .page-8k8-apk__provider-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

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