
    /* Base styles for the 8k8 page */
    .page-8k8 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #e0e0e0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 40px; /* Ensure space before footer */
    }

    .page-8k8__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Responsive height */
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small top padding, assuming body handles fixed header offset */
    }

    .page-8k8__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.6); /* Darken background image for text readability */
    }

    .page-8k8__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-8k8__hero-title {
      font-size: 3.5em;
      color: #ffcc00;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      line-height: 1.1;
    }

    .page-8k8__hero-subtitle {
      font-size: 1.5em;
      color: #f0f0f0;
      margin-bottom: 30px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }

    .page-8k8__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #007bff;
      color: #ffffff;
      font-size: 1.1em;
      font-weight: bold;
      border-radius: 5px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8__button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

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

    .page-8k8__section-title {
      font-size: 2.5em;
      color: #ffcc00;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-8k8__section-description {
      font-size: 1.1em;
      color: #cccccc;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8__card {
      background-color: #2a2a2a;
      border-radius: 10px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

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

    .page-8k8__card-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      object-fit: cover;
      border-radius: 5px;
    }
    
    .page-8k8__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .page-8k8__card-title {
      font-size: 1.5em;
      color: #ffcc00;
      margin-bottom: 10px;
    }

    .page-8k8__card-description {
      font-size: 0.95em;
      color: #b0b0b0;
    }

    .page-8k8__list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 900px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .page-8k8__list-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 15px 25px;
      font-size: 1.1em;
      color: #f0f0f0;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      flex: 1 1 calc(33% - 30px); /* Three items per row */
      box-sizing: border-box;
      text-align: center;
      min-width: 200px; /* Ensure items don't get too small */
    }

    .page-8k8__faq-section {
      background-color: #222222;
    }

    .page-8k8__faq-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-8k8__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .page-8k8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background-color: #333333;
      color: #ffcc00;
      cursor: pointer;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8__faq-question h3 {
      margin: 0;
      color: inherit;
      font-size: inherit;
      pointer-events: none; /* Allow clicking anywhere on the question div */
    }

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

    .page-8k8__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Allow clicking anywhere on the question div */
    }

    .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 20px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #cccccc;
      font-size: 1em;
    }

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

    .page-8k8__cta-section {
      background-color: #007bff;
      padding: 80px 20px;
      text-align: center;
    }

    .page-8k8__cta-title {
      font-size: 2.8em;
      color: #ffffff;
      margin-bottom: 20px;
    }

    .page-8k8__cta-description {
      font-size: 1.3em;
      color: #e0e0e0;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8__hero-title {
        font-size: 3em;
      }
      .page-8k8__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8__section-title {
        font-size: 2.2em;
      }
      .page-8k8__list-item {
        flex: 1 1 calc(50% - 30px); /* Two items per row on medium screens */
      }
    }

    @media (max-width: 768px) {
      .page-8k8__hero-section {
        height: 70vh;
        min-height: 350px;
      }
      .page-8k8__hero-title {
        font-size: 2.5em;
      }
      .page-8k8__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8__section {
        padding: 40px 15px;
      }
      .page-8k8__section-title {
        font-size: 2em;
      }
      .page-8k8__section-description {
        font-size: 1em;
      }
      .page-8k8__grid {
        grid-template-columns: 1fr; /* Single column on small screens */
      }
      .page-8k8__card {
        padding: 20px;
      }
      .page-8k8__card-title {
        font-size: 1.3em;
      }
      .page-8k8__list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        flex-direction: column; /* Stack items vertically */
      }
      .page-8k8__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }
      .page-8k8__faq-answer {
        padding: 0 15px;
      }
      .page-8k8__faq-item.active .page-8k8__faq-answer {
        padding: 15px 15px !important;
      }
      .page-8k8__cta-title {
        font-size: 2em;
      }
      .page-8k8__cta-description {
        font-size: 1.1em;
      }
      /* Image responsiveness */
      .page-8k8__hero-background,
      .page-8k8__card-image,
      .page-8k8__card-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8__card-image-container { /* Ensure containers are also responsive */
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8__hero-title {
        font-size: 2em;
      }
      .page-8k8__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8__section-title {
        font-size: 1.8em;
      }
      .page-8k8__cta-title {
        font-size: 1.8em;
      }
      .page-8k8__cta-description {
        font-size: 1em;
      }
    }
  