
    :root {
      --primary-color: #007bff; /* A vibrant blue */
      --secondary-color: #6c757d; /* A muted grey */
      --accent-color: #ffc107; /* A bright yellow for highlights */
      --background-dark: #1a1a2e; /* Dark background */
      --background-light: #f8f9fa; /* Light background */
      --text-color-dark: #e0e0e0; /* Light text on dark background */
      --text-color-light: #333333; /* Dark text on light background */
      --border-color: #333333; /* Dark border for separation */
      --button-bg: #e74c3c; /* Red for action buttons */
      --button-hover-bg: #c0392b; /* Darker red on hover */
      --header-offset: 122px; /* Default offset, overridden by shared.css if present */
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color-light);
      background-color: var(--background-light);
      padding-top: var(--header-offset); /* Ensure content is not hidden by fixed header */
      margin: 0;
    }

    .page-8k8-com {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-8k8-com__hero-section {
      background: linear-gradient(135deg, var(--background-dark), #0f0f1a);
      color: var(--text-color-dark);
      text-align: center;
      padding: 80px 20px 60px;
      border-radius: 8px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Small decorative top padding, as body already handles header offset */
    }

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

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

    .page-8k8-com__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      color: var(--accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      line-height: 1.5;
      color: var(--text-color-dark);
    }

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

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

    .page-8k8-com__section {
      background-color: white;
      padding: 40px;
      margin-bottom: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      color: var(--text-color-light);
    }

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

    .page-8k8-com__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: var(--accent-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-8k8-com__text-content {
      font-size: 1.1em;
      line-height: 1.8;
      margin-bottom: 20px;
      text-align: justify;
    }

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

    .page-8k8-com__card {
      background-color: var(--background-dark);
      color: var(--text-color-dark);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-8k8-com__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com__card-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-8k8-com__card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-8k8-com__card-title {
      font-size: 1.5em;
      color: var(--accent-color);
      margin-bottom: 10px;
    }

    .page-8k8-com__card-description {
      font-size: 1em;
      line-height: 1.6;
      color: var(--text-color-dark);
    }

    .page-8k8-com__cta-section {
      text-align: center;
      padding: 60px 20px;
      background-color: var(--primary-color);
      color: white;
      border-radius: 8px;
      margin-bottom: 40px;
    }

    .page-8k8-com__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: white;
    }

    .page-8k8-com__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section Styles */
    .page-8k8-com__faq-section {
      background-color: #f0f2f5;
      padding: 60px 40px;
      margin-bottom: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      color: var(--text-color-light);
    }

    .page-8k8-com__faq-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-8k8-com__faq-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: var(--accent-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-8k8-com__faq-list {
      max-width: 900px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

    .page-8k8-com__faq-item {
      background-color: white;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .page-8k8-com__faq-item.active {
      border-color: var(--primary-color);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

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

    .page-8k8-com__faq-question:hover {
      background-color: #f8f8f8;
    }

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

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

    .page-8k8-com__faq-item.active .page-8k8-com__faq-toggle {
      transform: rotate(45deg); /* Plus becomes an X */
    }

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

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

    .page-8k8-com__faq-answer p {
      margin-bottom: 15px;
      font-size: 1.05em;
      line-height: 1.7;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-8k8-com__hero-title {
        font-size: 3em;
      }
      .page-8k8-com__hero-description {
        font-size: 1.15em;
      }
      .page-8k8-com__section-title,
      .page-8k8-com__cta-title,
      .page-8k8-com__faq-title {
        font-size: 2em;
      }
      .page-8k8-com__section,
      .page-8k8-com__faq-section {
        padding: 30px;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com__hero-section {
        padding: 60px 15px 40px;
      }
      .page-8k8-com__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-com__hero-description {
        font-size: 1em;
      }
      .page-8k8-com__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-com__section,
      .page-8k8-com__cta-section,
      .page-8k8-com__faq-section {
        padding: 20px;
        margin-bottom: 30px;
      }
      .page-8k8-com__section-title,
      .page-8k8-com__cta-title,
      .page-8k8-com__faq-title {
        font-size: 1.8em;
      }
      .page-8k8-com__text-content {
        font-size: 1em;
      }
      .page-8k8-com__grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-com__card-image-wrapper {
        height: 180px;
      }
      .page-8k8-com__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-com__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-com__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-com__faq-item.active .page-8k8-com__faq-answer {
        padding: 15px 20px !important;
      }
      .page-8k8-com__faq-answer p {
        font-size: 0.95em;
      }

      /* List item specific responsive requirements */
      .page-8k8-com__grid > * { /* Targets all direct children of the grid (cards) */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-com__grid {
        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-com__text-content,
      .page-8k8-com__card-description,
      .page-8k8-com__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Image responsive optimization */
      .page-8k8-com__hero-image,
      .page-8k8-com__card-image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8k8-com__card-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com__hero-title {
        font-size: 2em;
      }
      .page-8k8-com__hero-description {
        font-size: 0.9em;
      }
      .page-8k8-com__section-title,
      .page-8k8-com__cta-title,
      .page-8k8-com__faq-title {
        font-size: 1.5em;
      }
      .page-8k8-com__cta-description {
        font-size: 1em;
      }
      .page-8k8-com__faq-question h3 {
        font-size: 1em;
      }
    }
  