
    /* Page specific CSS for 8k8-4 */
    :root {
      --page-8k8-4-primary-color: #e44d26; /* A vibrant orange-red, common in betting sites */
      --page-8k8-4-secondary-color: #333333; /* Dark gray for text */
      --page-8k8-4-background-color: #f8f8f8; /* Light background */
      --page-8k8-4-text-color: #4a4a4a; /* Medium gray for body text */
      --page-8k8-4-light-text-color: #ffffff; /* White text for dark backgrounds */
      --page-8k8-4-border-color: #dddddd; /* Light border */
      --page-8k8-4-accent-color: #007bff; /* Blue for links/accents if needed, ensuring contrast */
      --page-8k8-4-success-color: #28a745; /* Green for success */
      --page-8k8-4-warning-color: #ffc107; /* Yellow for warning */
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-4-text-color);
      background-color: var(--page-8k8-4-background-color);
      margin: 0;
      padding: 0;
    }

    .page-8k8-4 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 15px 40px; /* Adjust top padding for header offset, 10px for visual spacing */
      box-sizing: border-box;
    }

    .page-8k8-4__section {
      background-color: var(--page-8k8-4-light-text-color);
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Ensure padding is included in the width */
    }

    .page-8k8-4__hero-section {
      background: linear-gradient(135deg, var(--page-8k8-4-primary-color), #ff6f42);
      color: var(--page-8k8-4-light-text-color);
      text-align: center;
      padding: 60px 20px;
      border-radius: 8px;
      margin-bottom: 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      min-height: 350px;
      box-sizing: border-box;
      padding-top: 70px; /* Additional top padding for visual separation from fixed header */
    }

    .page-8k8-4__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.2;
      z-index: 0;
      max-width: 100%;
    }

    .page-8k8-4__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
    }

    .page-8k8-4__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: var(--page-8k8-4-light-text-color);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .page-8k8-4__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      opacity: 0.9;
      color: var(--page-8k8-4-light-text-color);
    }

    .page-8k8-4__button {
      display: inline-block;
      background-color: var(--page-8k8-4-light-text-color);
      color: var(--page-8k8-4-primary-color);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, color 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .page-8k8-4__button:hover {
      background-color: var(--page-8k8-4-secondary-color);
      color: var(--page-8k8-4-light-text-color);
    }

    .page-8k8-4__heading {
      font-size: 2em;
      color: var(--page-8k8-4-secondary-color);
      text-align: center;
      margin-bottom: 25px;
    }

    .page-8k8-4__subheading {
      font-size: 1.5em;
      color: var(--page-8k8-4-primary-color);
      margin-bottom: 15px;
    }

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

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

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

    .page-8k8-4__card-icon {
      width: 200px; /* Min size for image */
      height: auto; /* Maintain aspect ratio */
      max-height: 200px; /* Ensure it doesn't get too big */
      object-fit: contain;
      margin: 0 auto 15px auto;
      display: block;
      max-width: 100%;
    }

    .page-8k8-4__card-title {
      font-size: 1.3em;
      color: var(--page-8k8-4-primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-4__steps-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: 1fr; /* Single column on mobile */
      gap: 20px;
    }

    .page-8k8-4__step-item {
      background-color: var(--page-8k8-4-background-color);
      padding: 20px 25px;
      border-left: 5px solid var(--page-8k8-4-primary-color);
      border-radius: 5px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
      display: flex;
      align-items: flex-start;
      box-sizing: border-box;
    }

    .page-8k8-4__step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-4-primary-color);
      margin-right: 15px;
      flex-shrink: 0;
      line-height: 1;
    }

    .page-8k8-4__step-content {
      flex-grow: 1;
    }

    .page-8k8-4__step-title {
      font-size: 1.2em;
      color: var(--page-8k8-4-secondary-color);
      margin-bottom: 5px;
    }

    .page-8k8-4__payment-grid,
    .page-8k8-4__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .page-8k8-4__payment-item,
    .page-8k8-4__provider-item {
      background-color: var(--page-8k8-4-background-color);
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-4__payment-logo,
    .page-8k8-4__provider-logo {
      max-width: 100%;
      height: auto;
      max-height: 80px; /* Adjusted for better visual */
      min-width: 200px; /* Enforce minimum width */
      min-height: 80px; /* Enforce minimum height, can be adjusted based on aspect ratio */
      object-fit: contain;
      margin: 0 auto 10px auto;
      display: block;
    }

    .page-8k8-4__payment-name,
    .page-8k8-4__provider-name {
      font-size: 1em;
      font-weight: bold;
      color: var(--page-8k8-4-secondary-color);
    }

    .page-8k8-4__faq-section {
      background-color: var(--page-8k8-4-light-text-color);
      margin-bottom: 30px;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-8k8-4__faq-item {
      border-bottom: 1px solid var(--page-8k8-4-border-color);
      margin-bottom: 10px;
      padding-bottom: 10px;
    }

    .page-8k8-4__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .page-8k8-4__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      padding: 15px 0;
      font-size: 1.1em;
      color: var(--page-8k8-4-secondary-color);
      font-weight: bold;
      user-select: none;
      transition: color 0.3s ease;
    }

    .page-8k8-4__faq-question:hover {
      color: var(--page-8k8-4-primary-color);
    }

    .page-8k8-4__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
    }

    .page-8k8-4__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-8k8-4-primary-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      line-height: 1;
    }

    .page-8k8-4__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;
      color: var(--page-8k8-4-text-color);
      font-size: 0.95em;
      line-height: 1.7;
    }

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

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

    .page-8k8-4__promo-section {
        text-align: center;
        padding: 40px 20px;
        background-color: #f0f8ff; /* Light blue background */
        border-radius: 8px;
        margin-top: 30px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        box-sizing: border-box;
    }

    .page-8k8-4__promo-title {
        font-size: 2em;
        color: var(--page-8k8-4-primary-color);
        margin-bottom: 15px;
    }

    .page-8k8-4__promo-description {
        font-size: 1.1em;
        color: var(--page-8k8-4-secondary-color);
        margin-bottom: 25px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-8k8-4__promo-link {
        display: inline-block;
        background-color: var(--page-8k8-4-success-color);
        color: var(--page-8k8-4-light-text-color);
        padding: 15px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        transition: background-color 0.3s ease;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .page-8k8-4__promo-link:hover {
        background-color: #218838;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-8k8-4 {
        padding: 10px 10px 30px; /* Less horizontal padding on smaller screens */
      }

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

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

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

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

      .page-8k8-4__subheading {
        font-size: 1.3em;
      }

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

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

      .page-8k8-4__card-icon {
        width: 100% !important;
        max-width: 200px !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 150px !important; /* Ensure min height for better image display */
        object-fit: contain !important;
        margin: 0 auto 15px auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-4__steps-list {
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-4__step-item {
        padding: 15px 20px;
        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;
        word-break: break-word !important;
      }

      .page-8k8-4__step-number {
        font-size: 1.5em;
      }

      .page-8k8-4__step-title {
        font-size: 1.1em;
      }

      .page-8k8-4__payment-grid,
      .page-8k8-4__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-4__payment-item,
      .page-8k8-4__provider-item {
        padding: 10px;
        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;
        word-break: break-word !important;
      }

      .page-8k8-4__payment-logo,
      .page-8k8-4__provider-logo {
        max-height: 60px !important;
        min-width: 120px !important; /* Ensure min width for mobile grid items */
        min-height: 60px !important;
        margin: 0 auto 10px auto !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        box-sizing: border-box !important;
      }

      .page-8k8-4__faq-question {
        font-size: 1em;
        padding: 12px 0;
      }

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

      .page-8k8-4__faq-toggle {
        font-size: 1.3em;
      }

      .page-8k8-4__faq-answer {
        padding: 15px 10px !important; /* Ensure mobile padding is controlled */
      }

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

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

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

    @media (min-width: 769px) {
      .page-8k8-4__steps-list {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Two columns on larger screens */
      }
    }
  