
    :root {
      --page-8k8-primary-color: #e0b300; /* Gold/Yellow */
      --page-8k8-secondary-color: #2c3e50; /* Dark Blue */
      --page-8k8-accent-color: #3498db; /* Blue */
      --page-8k8-text-color: #ecf0f1; /* Light Grey */
      --page-8k8-dark-text-color: #1a1a1a; /* Very Dark Grey */
      --page-8k8-background-dark: #1f2a38;
      --page-8k8-background-light: #2c3e50;
      --page-8k8-border-color: rgba(255, 255, 255, 0.1);
      --page-8k8-button-hover: #f1c40f;
    }

    .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: 10px; /* Small decorative padding, body handles header offset */
    }

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

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

    .page-8k8__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: 500px;
      padding: 100px 20px 60px; /* Adjust padding for content, body handles top offset */
      background: linear-gradient(135deg, var(--page-8k8-background-dark) 0%, var(--page-8k8-secondary-color) 100%);
    }

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

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

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

    .page-8k8__hero-subtitle {
      font-size: 1.5em;
      color: var(--page-8k8-text-color);
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8__cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 30px;
      flex-wrap: wrap;
    }

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

    .page-8k8__button:hover {
      background-color: var(--page-8k8-button-hover);
      transform: translateY(-2px);
    }

    .page-8k8__button--secondary {
      background-color: var(--page-8k8-accent-color);
      color: var(--page-8k8-text-color);
    }

    .page-8k8__button--secondary:hover {
      background-color: #2980b9;
    }

    .page-8k8__title {
      font-size: 2.8em;
      color: var(--page-8k8-primary-color);
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

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

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

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

    .page-8k8__card {
      background-color: var(--page-8k8-background-light);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-8k8-border-color);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .page-8k8__card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8__card-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
      display: block;
    }

    .page-8k8__card-title {
      font-size: 1.5em;
      color: var(--page-8k8-primary-color);
      margin-bottom: 15px;
      line-height: 1.3;
    }

    .page-8k8__card-description {
      font-size: 1em;
      color: var(--page-8k8-text-color);
      flex-grow: 1; /* Allows description to take available space */
    }

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

    .page-8k8__list-item {
      background-color: var(--page-8k8-background-light);
      padding: 20px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      text-align: center;
      flex: 1 1 calc(33% - 40px); /* Default to 3 items per row */
      min-width: 280px;
      max-width: 380px;
      box-sizing: border-box;
      border: 1px solid var(--page-8k8-border-color);
      color: var(--page-8k8-text-color);
      font-size: 1.1em;
      font-weight: bold;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-8k8__promo-link {
      color: var(--page-8k8-primary-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-8k8__promo-link:hover {
      color: var(--page-8k8-button-hover);
      text-decoration: underline;
    }

    /* FAQ Section Styles */
    .page-8k8__faq-section {
      text-align: left;
    }

    .page-8k8__faq-list {
      margin-top: 40px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

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

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

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

    .page-8k8__faq-question h3 {
      margin: 0;
      color: var(--page-8k8-primary-color);
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from interfering with click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
      flex-grow: 1;
    }

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

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

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

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

    .page-8k8__promo-section {
      background: url('[GALLERY:pattern:1920x400:abstract,geometric,dark_pattern]') center/cover no-repeat;
      background-attachment: fixed;
      padding: 80px 20px;
      color: var(--page-8k8-text-color);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8__promo-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__promo-text {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8__promo-button {
      background-color: var(--page-8k8-primary-color);
      color: var(--page-8k8-dark-text-color);
      padding: 18px 40px;
      border-radius: 10px;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      display: inline-block;
    }

    .page-8k8__promo-button:hover {
      background-color: var(--page-8k8-button-hover);
      transform: translateY(-3px);
    }

    .page-8k8__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 25px;
      margin-top: 40px;
      justify-items: center;
    }

    .page-8k8__payment-item {
      background-color: var(--page-8k8-background-light);
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      color: var(--page-8k8-text-color);
      font-weight: bold;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 120px;
      max-width: 200px;
      width: 100%;
      box-sizing: border-box;
      border: 1px solid var(--page-8k8-border-color);
    }

    .page-8k8__payment-logo {
      max-width: 100%;
      height: auto;
      max-height: 60px;
      margin-bottom: 10px;
    }

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .page-8k8__hero-title {
        font-size: 3em;
      }
      .page-8k8__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8__title {
        font-size: 2.2em;
      }
      .page-8k8__subtitle {
        font-size: 1.5em;
      }
      .page-8k8__card {
        padding: 25px;
      }
      .page-8k8__card-title {
        font-size: 1.3em;
      }
      .page-8k8__list-item {
        flex: 1 1 calc(50% - 30px); /* 2 items per row */
      }
    }

    @media (max-width: 768px) {
      .page-8k8__section {
        padding: 40px 15px;
      }
      .page-8k8__hero-section {
        padding: 80px 15px 40px;
        min-height: 400px;
      }
      .page-8k8__hero-title {
        font-size: 2.5em;
      }
      .page-8k8__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-8k8__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }
      .page-8k8__title {
        font-size: 1.8em;
      }
      .page-8k8__subtitle {
        font-size: 1.3em;
      }
      .page-8k8__grid {
        grid-template-columns: 1fr;
      }
      .page-8k8__card {
        padding: 20px;
        align-items: center; /* Center content in mobile cards */
        text-align: center;
      }
      .page-8k8__list {
        flex-direction: column;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-8k8__list-item {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        font-size: 1em;
      }
      .page-8k8__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-8k8__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8__faq-toggle {
        font-size: 1.5em;
      }
      .page-8k8__faq-answer {
        padding: 15px 20px !important;
      }
      .page-8k8__promo-title {
        font-size: 2.2em;
      }
      .page-8k8__promo-text {
        font-size: 1.1em;
      }
      .page-8k8__promo-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }
      .page-8k8__payment-item {
        max-width: 150px;
      }
    }

    @media (max-width: 480px) {
      .page-8k8__hero-title {
        font-size: 2em;
      }
      .page-8k8__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8__title {
        font-size: 1.6em;
      }
      .page-8k8__button {
        font-size: 1em;
        padding: 12px 25px;
      }
      .page-8k8__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8__promo-title {
        font-size: 1.8em;
      }
      .page-8k8__promo-text {
        font-size: 1em;
      }
    }

    /* Ensure all images are responsive */
    .page-8k8 img {
      max-width: 100%;
      height: auto;
      display: block; /* Remove extra space below images */
    }

    .page-8k8__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-8k8 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8k8__image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
    }
  