
    /* Page-specific CSS for 8k8 */
    :root {
      --page-8k8-primary-color: #ffcc00; /* Gold/Yellow */
      --page-8k8-secondary-color: #333333; /* Dark Grey */
      --page-8k8-text-color: #ffffff; /* White */
      --page-8k8-accent-color: #007bff; /* Blue for links/buttons */
      --page-8k8-background-dark: #1a1a1a; /* Very Dark Grey */
      --page-8k8-background-light: #2c2c2c; /* Slightly Lighter Dark Grey */
      --page-8k8-border-color: #555555;
    }

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

    .page-8k8__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8__section--dark {
      background-color: var(--page-8k8-background-light);
    }

    .page-8k8__hero-section {
      background: var(--page-8k8-background-dark);
      padding: 10px 20px 60px; /* Adjust top padding for header offset */
      text-align: center;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh; /* Ensure hero section is visible */
      box-sizing: border-box;
    }

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

    .page-8k8__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8__hero-title {
      font-size: 3em;
      color: var(--page-8k8-primary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--page-8k8-text-color);
    }

    .page-8k8__cta-button {
      display: inline-block;
      background-color: var(--page-8k8-primary-color);
      color: var(--page-8k8-background-dark);
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      margin: 0 10px;
    }

    .page-8k8__cta-button:hover {
      background-color: #ffd700;
    }

    .page-8k8__title {
      font-size: 2.5em;
      color: var(--page-8k8-primary-color);
      margin-bottom: 30px;
      text-align: center;
    }

    .page-8k8__subtitle {
      font-size: 1.8em;
      color: var(--page-8k8-text-color);
      margin-bottom: 20px;
    }

    .page-8k8__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--page-8k8-text-color);
      text-align: left;
    }

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

    .page-8k8__card {
      background-color: var(--page-8k8-background-light);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      text-align: center;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      box-sizing: border-box;
    }

    .page-8k8__card-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
      width: 100%; /* Ensure images fill card width */
      min-height: 200px; /* Minimum height for content images */
      box-sizing: border-box;
    }

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

    .page-8k8__card-description {
      font-size: 0.95em;
      color: var(--page-8k8-text-color);
      text-align: left;
    }

    .page-8k8__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
      box-sizing: border-box;
    }

    .page-8k8__list-item {
      background-color: var(--page-8k8-background-light);
      border-radius: 8px;
      padding: 15px 25px;
      font-size: 1.1em;
      color: var(--page-8k8-text-color);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      flex: 1 1 auto; /* Allow items to grow and shrink */
      min-width: 250px; /* Minimum width for list items */
      text-align: center;
      box-sizing: border-box;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-8k8__list-item strong {
      color: var(--page-8k8-primary-color);
    }

    .page-8k8__promo-list {
      display: flex;
      flex-direction: column;
      gap: 20px;
      text-align: left;
    }

    .page-8k8__promo-item {
      background-color: var(--page-8k8-background-light);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

    .page-8k8__promo-item-description {
      font-size: 1em;
      color: var(--page-8k8-text-color);
    }

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

    .page-8k8__payment-item {
      background-color: var(--page-8k8-background-light);
      border-radius: 8px;
      padding: 15px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-8k8__payment-logo {
      max-width: 100%;
      height: auto;
      max-height: 80px; /* Constrain height for logos */
      object-fit: contain;
      margin-bottom: 10px;
      min-width: 200px; /* Enforce min size > 200px */
      min-height: 200px;
    }

    .page-8k8__payment-name {
      font-size: 1em;
      color: var(--page-8k8-text-color);
      font-weight: bold;
    }

    .page-8k8__faq-section {
      text-align: left;
    }

    .page-8k8__faq-item {
      background-color: var(--page-8k8-background-light);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-8k8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #2a2a2a;
      transition: background-color 0.3s ease;
    }

    .page-8k8__faq-question:hover {
      background-color: #383838;
    }

    .page-8k8__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-8k8-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-8k8__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
    }

    .page-8k8__faq-item.active .page-88k__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or similar */
    }

    .page-8k8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--page-8k8-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-8k8__hero-title {
        font-size: 2.2em;
      }

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

      .page-8k8__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        margin: 5px;
      }

      .page-8k8__title {
        font-size: 2em;
      }

      .page-8k8__subtitle {
        font-size: 1.5em;
      }

      .page-8k8__section {
        padding: 30px 15px;
      }

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

      .page-8k8__list {
        flex-direction: column;
        gap: 10px;
        padding: 0;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8__list-item {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 15px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8__card-image,
      .page-8k8__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8__payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      }

      .page-8k8__faq-question {
        padding: 15px 20px;
      }

      .page-8k8__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8__faq-answer {
        padding: 0 20px;
      }

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

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

      .page-8k8__cta-button {
        width: 100%;
        margin: 5px 0;
      }
    }
  