
    :root {
      --page-8k8-4-2-primary-color: #e44d26; /* A vibrant orange-red for action */
      --page-8k8-4-2-secondary-color: #f7b731; /* A golden yellow for highlights */
      --page-8k8-4-2-dark-bg: #1a1a1a;
      --page-8k8-4-2-light-bg: #2a2a2a;
      --page-8k8-4-2-text-color: #ffffff;
      --page-8k8-4-2-accent-color: #4CAF50; /* Green for success/call to action */
      --page-8k8-4-2-border-color: #333333;
    }

    .page-8k8-4-2 {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-4-2-text-color);
      background-color: var(--page-8k8-4-2-dark-bg);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    .page-8k8-4-2__section--dark {
      background-color: var(--page-8k8-4-2-dark-bg);
    }

    .page-8k8-4-2__section--light {
      background-color: var(--page-8k8-4-2-light-bg);
    }

    .page-8k8-4-2__hero-section {
      position: relative;
      padding-top: 10px; /* Small decorative padding, relying on body for header offset */
      padding-bottom: 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
      text-align: center;
      overflow: hidden;
      background-color: #000;
    }

    .page-8k8-4-2__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 0;
      max-width: 100%; /* Ensure responsiveness */
    }

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

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

    .page-8k8-4-2__hero-subtitle {
      font-size: 1.5em;
      color: var(--page-8k8-4-2-text-color);
      margin-bottom: 30px;
    }

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

    .page-8k8-4-2__cta-button:hover {
      background-color: #ff6633;
      transform: translateY(-3px);
    }

    .page-8k8-4-2__title {
      font-size: 2.8em;
      color: var(--page-8k8-4-2-secondary-color);
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-4-2__title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-8k8-4-2-primary-color);
      border-radius: 2px;
    }

    .page-8k8-4-2__subtitle {
      font-size: 1.3em;
      color: #ccc;
      margin-bottom: 40px;
    }

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

    .page-8k8-4-2__card {
      background-color: var(--page-8k8-4-2-light-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease;
      border: 1px solid var(--page-8k8-4-2-border-color);
    }

    .page-8k8-4-2__card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-4-2__card-image-container {
      width: 100%;
      height: 250px;
      overflow: hidden;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-4-2__card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-8k8-4-2__card-content {
      padding: 25px;
    }

    .page-8k8-4-2__card-title {
      font-size: 1.8em;
      color: var(--page-8k8-4-2-secondary-color);
      margin-bottom: 15px;
      word-wrap: break-word; /* Ensure long titles wrap */
    }

    .page-8k8-4-2__card-description {
      font-size: 1em;
      color: #bbb;
      margin-bottom: 20px;
    }

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

    .page-8k8-4-2__list-item {
      background-color: var(--page-8k8-4-2-light-bg);
      padding: 15px 25px;
      border-radius: 8px;
      font-size: 1.1em;
      color: var(--page-8k8-4-2-text-color);
      border-left: 5px solid var(--page-8k8-4-2-primary-color);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      flex: 1 1 calc(33% - 40px); /* Adjust for 3 columns on desktop */
      max-width: calc(33% - 40px);
      box-sizing: border-box;
      word-wrap: break-word; /* Ensure text wraps */
      text-align: left;
    }

    .page-8k8-4-2__faq-section {
      text-align: left;
    }

    .page-8k8-4-2__faq-item {
      background-color: var(--page-8k8-4-2-light-bg);
      border: 1px solid var(--page-8k8-4-2-border-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
    }

    .page-8k8-4-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      background-color: var(--page-8k8-4-2-dark-bg);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-4-2__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      color: var(--page-8k8-4-2-secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click on parent */
      word-wrap: break-word;
    }

    .page-8k8-4-2__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-4-2-primary-color);
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-8k8-4-2__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: #ccc;
      font-size: 1em;
    }

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

    .page-8k8-4-2__faq-item.active .page-8k8-4-2__faq-question {
      background-color: #3a3a3a;
    }

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

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

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

      .page-8k8-4-2__subtitle {
        font-size: 1.1em;
      }

      .page-8k8-4-2__section {
        padding: 40px 15px;
      }

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

      .page-8k8-4-2__card-image-container {
        height: 200px; /* Adjust height for mobile */
      }

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

      .page-8k8-4-2__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-4-2__list-item {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px 20px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-4-2__faq-question {
        padding: 15px 20px;
      }

      .page-8k8-4-2__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-4-2__faq-answer {
        padding: 0 20px;
      }

      .page-8k8-4-2__faq-item.active .page-8k8-4-2__faq-answer {
        padding: 15px 20px !important;
      }
    }
  