
    /* CSS styles for page-8k8-4-2 */
    .page-8k8-4-2 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 20px; /* Ensure some space above the footer */
    }

    /* Fixed navigation bar spacing - assuming shared.css handles body padding-top */
    /* Only add a small decorative padding-top here */
    .page-8k8-4-2__hero-section {
      padding-top: 10px; /* Small decorative padding, as body padding-top handles header offset */
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 400px;
      color: #fff;
      background-color: #1a1a1a;
    }

    .page-8k8-4-2__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.5;
    }

    .page-8k8-4-2__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding: 20px;
    }

    .page-8k8-4-2__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold color for highlights */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }

    .page-8k8-4-2__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee;
    }

    .page-8k8-4-2__button {
      display: inline-block;
      padding: 12px 25px;
      background-color: #ffcc00;
      color: #1a1a1a;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-8k8-4-2__button:hover {
      background-color: #e6b800;
    }

    .page-8k8-4-2__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      margin-top: 20px;
    }

    .page-8k8-4-2__section--dark {
      background-color: #2a2a2a;
      color: #eee;
    }

    .page-8k8-4-2__section-title {
      font-size: 2.5em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-8k8-4-2__section-title--dark {
      color: #ffcc00;
    }

    .page-8k8-4-2__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #ffcc00;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-8k8-4-2__text-content {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 30px;
    }

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

    .page-8k8-4-2__card {
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      padding: 25px;
      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-4-2__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }

    .page-8k8-4-2__card-image {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
      margin-bottom: 15px;
      object-fit: cover;
      min-width: 200px; /* Minimum size requirement */
      min-height: 200px; /* Minimum size requirement */
    }

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

    .page-8k8-4-2__card-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-8k8-4-2__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .page-8k8-4-2__list-item {
      background-color: #eee;
      padding: 10px 20px;
      border-radius: 25px;
      font-size: 1.05em;
      color: #333;
      box-sizing: border-box; /* Crucial for responsive list items */
      text-align: center;
    }

    .page-8k8-4-2__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 20px auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .page-8k8-4-2__faq-item {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-8k8-4-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f0f0f0;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      color: #333;
    }

    .page-8k8-4-2__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-8k8-4-2__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-4-2__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffcc00;
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

    .page-8k8-4-2__faq-item.active .page-8k8-4-2__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or similar, or just change text */
    }

    .page-8k8-4-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #fff;
      color: #555;
      font-size: 0.95em;
    }

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

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-8k8-4-2__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-4-2__hero-subtitle {
        font-size: 1em;
      }

      .page-8k8-4-2__section-title {
        font-size: 2em;
      }

      .page-8k8-4-2__text-content {
        font-size: 1em;
      }

      .page-8k8-4-2__grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-4-2__section,
      .page-8k8-4-2__faq-section {
        padding: 20px 15px;
        margin-top: 15px;
      }

      .page-8k8-4-2__list {
        flex-direction: column;
        gap: 10px;
        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-4-2__list-item {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 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;
        word-break: break-word !important;
      }

      /* Image responsiveness */
      .page-8k8-4-2__card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-4-2__card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }
  