
    :root {
      --primary-color: #ffcc00; /* Gold/Yellow */
      --secondary-color: #333333; /* Dark Grey */
      --accent-color: #cc0000; /* Red */
      --text-light: #ffffff;
      --text-dark: #333333;
      --background-dark: #1a1a1a;
      --background-light: #2c2c2c;
      --border-color: #555555;
      --max-width: 1200px;
      --spacing-unit: 20px;
    }

    /* Base styles for the page-8k8 context */
    .page-8k8 {
      font-family: 'Arial', sans-serif;
      color: var(--text-light);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-bottom: 70px; /* Space for floating buttons */
    }

    /* Fixed header offset handling */
    /* Assuming body already has padding-top from shared.css,
       this provides a small decorative top padding for the first section. */
    .page-8k8__hero-section {
      padding-top: 10px;
    }

    /* General section styling */
    .page-8k8__section {
      padding: var(--spacing-unit) 0;
      text-align: center;
    }

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

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

    .page-8k8__container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 var(--spacing-unit);
      box-sizing: border-box;
    }

    .page-8k8__heading {
      color: var(--primary-color);
      margin-bottom: var(--spacing-unit);
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-8k8__subheading {
      color: var(--text-light);
      margin-bottom: calc(var(--spacing-unit) * 1.5);
      font-size: 1.8em;
      font-weight: normal;
    }

    .page-8k8__paragraph {
      margin-bottom: var(--spacing-unit);
      font-size: 1.1em;
      color: #ccc;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    /* Hero Section */
    .page-8k8__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 600px;
      text-align: center;
      color: var(--text-light);
      background-color: #000; /* Fallback */
    }

    .page-8k8__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.6;
      max-width: 100%; /* Responsive image */
    }

    .page-8k8__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: var(--spacing-unit);
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
    }

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

    .page-8k8__hero-description {
      font-size: 1.3em;
      margin-bottom: var(--spacing-unit);
      color: #eee;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8k8__cta-button {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--text-light);
      padding: 15px 30px;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      outline: none;
    }

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

    /* Floating Buttons */
    .page-8k8__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-8k8__floating-button {
      background-color: var(--primary-color);
      color: var(--text-dark);
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      font-size: 1.1em;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      outline: none;
    }

    .page-8k8__floating-button:hover {
      background-color: #ffd700;
      transform: translateY(-2px);
    }

    /* Product Display */
    .page-8k8__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: var(--spacing-unit);
      margin-top: var(--spacing-unit);
      justify-items: center; /* Center product items */
    }

    .page-8k8__product-item {
      background-color: var(--background-light);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box; /* Required for responsive lists */
    }

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

    .page-8k8__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Responsive image */
      height: auto; /* Maintain aspect ratio */
    }

    .page-8k8__product-content {
      padding: 15px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .page-8k8__product-description {
      font-size: 0.95em;
      color: #ccc;
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    /* Providers and Payments */
    .page-8k8__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: var(--spacing-unit);
      margin-top: var(--spacing-unit);
      align-items: center;
      justify-items: center;
    }

    .page-8k8__logo-item {
      background-color: var(--background-light);
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px; /* Fixed height for consistent display */
      box-sizing: border-box; /* Required for responsive lists */
    }

    .page-8k8__logo-image {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
      height: auto; /* Maintain aspect ratio */
    }

    /* Promotions Section */
    .page-8k8__promo-card {
      background-color: var(--background-light);
      border-radius: 10px;
      padding: var(--spacing-unit);
      margin-top: var(--spacing-unit);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8__promo-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: var(--spacing-unit);
    }

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

    .page-8k8__promo-description {
      font-size: 1.1em;
      color: #ccc;
      margin-bottom: var(--spacing-unit);
      max-width: 700px;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

    .page-8k8__promo-link {
      background-color: var(--primary-color);
      color: var(--text-dark);
      padding: 12px 25px;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }

    .page-8k8__promo-link:hover {
      background-color: #ffd700;
    }

    /* FAQ Section */
    .page-8k8__faq-list {
      margin-top: var(--spacing-unit);
      text-align: left;
    }

    .page-8k8__faq-item {
      background-color: var(--background-light);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
      transition: background-color 0.3s ease;
    }

    .page-8k8__faq-item:hover {
      background-color: #3a3a3a;
    }

    .page-8k8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      color: var(--primary-color);
      font-weight: bold;
    }

    .page-8k8__faq-question h3 {
      margin: 0;
      color: var(--primary-color);
      font-size: 1em; /* Override default h3 size to match parent */
      pointer-events: none; /* Crucial for click event on parent div */
    }

    .page-8k8__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Crucial for click event on parent div */
      transition: transform 0.3s ease;
    }

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

    .page-8k8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
      color: #ccc;
      font-size: 1em;
    }

    .page-8k8__faq-answer p {
      margin: 0; /* Remove default paragraph margin within answer */
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8__hero-title {
        font-size: 2.5em;
      }

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

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

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

      .page-8k8__product-grid {
        grid-template-columns: 1fr;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Adjust padding for smaller screens */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8__product-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Adjust padding for smaller screens */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px !important; /* Adjust padding for smaller screens */
      }

      /* All images must be responsive */
      .page-8k8__hero-background,
      .page-8k8__product-image,
      .page-8k8__logo-image,
      .page-8k8__promo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        bottom: 10px;
        right: 10px;
        left: 10px;
        justify-content: space-around;
        gap: 5px;
      }

      .page-8k8__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-8k8__faq-question {
        padding: 12px 15px;
        font-size: 1.1em;
      }

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

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

      .page-8k8__promo-card {
        padding: calc(var(--spacing-unit) / 1.5);
      }
      .page-8k8__promo-title {
        font-size: 1.6em;
      }
      .page-8k8__promo-description {
        font-size: 1em;
      }
    }
  