
    :root {
      --page-8k8-primary-color: #e44d26; /* A vibrant orange for highlights */
      --page-8k8-secondary-color: #2c3e50; /* Dark blue for text and backgrounds */
      --page-8k8-accent-color: #f39c12; /* Golden yellow for accents */
      --page-8k8-text-color: #ecf0f1; /* Light gray for main text */
      --page-8k8-background-dark: #1a1a2e; /* Dark background */
      --page-8k8-background-light: #f5f5f5; /* Light background for contrast */
    }

    .page-8k8 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-text-color);
      background-color: var(--page-8k8-background-dark);
      padding-top: 10px; /* Small top padding, expecting body padding-top from shared.css */
      box-sizing: border-box;
    }

    .page-8k8__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-8k8__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, var(--page-8k8-secondary-color), var(--page-8k8-background-dark));
      color: var(--page-8k8-text-color);
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 40px;
      box-sizing: border-box;
    }

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

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

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

    .page-8k8__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: var(--page-8k8-text-color);
      box-sizing: border-sizing;
    }

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

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

    .page-8k8__section {
      padding: 40px 0;
      margin-bottom: 30px;
      background-color: var(--page-8k8-secondary-color);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

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

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

    .page-8k8__section--light .page-8k8__section-title {
      color: var(--page-8k8-primary-color);
    }

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

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

    .page-8k8__section--light .page-8k8__feature-card {
      background-color: #fff;
      color: var(--page-8k8-secondary-color);
    }

    .page-8k8__feature-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8__card-image {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: 5px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-8k8__feature-card-title {
      font-size: 1.6em;
      color: var(--page-8k8-primary-color);
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .page-8k8__feature-card-description {
      font-size: 1em;
      color: var(--page-8k8-text-color);
      box-sizing: border-box;
    }

    .page-8k8__section--light .page-8k8__feature-card-description {
      color: var(--page-8k8-secondary-color);
    }

    .page-8k8__text-block {
      max-width: 800px;
      margin: 0 auto 20px auto;
      text-align: center;
      font-size: 1.1em;
      box-sizing: border-box;
    }

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

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

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

    .page-8k8__list-item {
      background-color: var(--page-8k8-background-dark);
      padding: 15px 25px;
      border-radius: 5px;
      flex: 1 1 auto;
      min-width: 200px;
      max-width: 300px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      font-weight: 500;
      color: var(--page-8k8-text-color);
      box-sizing: border-box;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    .page-8k8__section--light .page-8k8__list-item {
      background-color: #fff;
      color: var(--page-8k8-secondary-color);
    }

    /* FAQ Section Styles */
    .page-8k8__faq-section {
      background-color: var(--page-8k8-secondary-color);
      padding: 40px 0;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

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

    .page-8k8__faq-item {
      background-color: var(--page-8k8-background-dark);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      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: var(--page-8k8-secondary-color);
      color: var(--page-8k8-text-color);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      text-align: left;
      color: var(--page-8k8-text-color);
      pointer-events: none; /* Prevent h3 from blocking click event */
      box-sizing: border-box;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    .page-8k8__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      color: var(--page-8k8-primary-color);
      pointer-events: none; /* Prevent toggle from blocking click event */
      box-sizing: border-box;
    }

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

    .page-8k8__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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-text-color);
      box-sizing: border-box;
    }

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

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

      .page-8k8__hero-subtitle {
        font-size: 1.2em;
      }

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

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

      .page-8k8__list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 !important;
        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: 90% !important; /* Adjust based on container padding */
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

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

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

      .page-8k8__faq-question h3 {
        font-size: 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__hero-subtitle {
        font-size: 1em;
      }

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

      .page-8k8__section-title {
        font-size: 1.8em;
      }

      .page-8k8__text-block {
        font-size: 0.95em;
      }
    }
  