
    :root {
      --page-8k8-4-2-primary-color: #FFD700; /* Gold */
      --page-8k8-4-2-secondary-color: #1A1A1A; /* Dark Grey */
      --page-8k8-4-2-accent-color: #FF4500; /* Orange Red */
      --page-8k8-4-2-text-color: #FFFFFF; /* White */
      --page-8k8-4-2-light-text-color: #CCCCCC; /* Light Grey */
      --page-8k8-4-2-bg-dark: #0F0F0F; /* Very Dark Grey */
      --page-8k8-4-2-bg-medium: #2C2C2C; /* Medium Dark Grey */
    }

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

    .page-8k8-4-2__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }

    @media (max-width: 768px) {
      .page-8k8-4-2__container {
        padding: 15px;
      }
    }

    .page-8k8-4-2__hero-section {
      position: relative;
      padding-top: 10px; /* Small decorative top padding, relies on body for header offset */
      padding-bottom: 60px;
      background-color: var(--page-8k8-4-2-bg-medium);
      text-align: center;
      overflow: hidden;
    }

    .page-8k8-4-2__hero-image {
      width: 100%;
      height: auto;
      max-height: 500px;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
      opacity: 0.3;
    }

    @media (max-width: 768px) {
      .page-8k8-4-2__hero-image {
        max-height: 300px;
      }
    }

    .page-8k8-4-2__hero-content {
      position: relative;
      z-index: 1;
      padding: 40px 20px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
      margin: 20px;
    }

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

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

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

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

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

    .page-8k8-4-2__cta-button:hover {
      background-color: #E03C00; /* Darker Orange Red */
    }

    .page-8k8-4-2__section {
      padding: 60px 0;
      background-color: var(--page-8k8-4-2-bg-dark);
      text-align: center;
    }

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

    .page-8k8-4-2__section-title {
      font-size: 2.8em;
      color: var(--page-8k8-4-2-primary-color);
      margin-bottom: 40px;
    }

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

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

    @media (max-width: 768px) {
      .page-8k8-4-2__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    .page-8k8-4-2__card {
      background-color: var(--page-8k8-4-2-secondary-color);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
      text-align: left;
      transition: transform 0.3s ease;
    }

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

    .page-8k8-4-2__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
      max-width: 100%;
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .page-8k8-4-2__card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    .page-8k8-4-2__card-title {
      font-size: 1.8em;
      color: var(--page-8k8-4-2-primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-4-2__card-text {
      color: var(--page-8k8-4-2-light-text-color);
      font-size: 1.1em;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    .page-8k8-4-2__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-8k8-4-2__list-item {
      background-color: var(--page-8k8-4-2-secondary-color);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      text-align: left;
      color: var(--page-8k8-4-2-light-text-color);
      font-size: 1.1em;
      display: flex;
      align-items: center;
      box-sizing: border-box; /* Crucial for list items */
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    .page-8k8-4-2__list-item::before {
      content: '✔';
      color: var(--page-8k8-4-2-primary-color);
      font-size: 1.5em;
      margin-right: 15px;
      line-height: 1;
    }

    @media (max-width: 768px) {
      .page-8k8-4-2__list {
        grid-template-columns: 1fr;
        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-4-2__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
    }

    .page-8k8-4-2__highlight-text {
      color: var(--page-8k8-4-2-primary-color);
      font-weight: bold;
    }

    .page-8k8-4-2__faq-section {
      padding: 60px 0;
      background-color: var(--page-8k8-4-2-bg-dark);
    }

    .page-8k8-4-2__faq-list {
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-4-2__faq-item {
      background-color: var(--page-8k8-4-2-secondary-color);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

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

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

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

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

    .page-8k8-4-2__faq-item.active .page-8k8-4-2__faq-toggle {
      transform: rotate(45deg); /* Plus to X */
    }

    .page-8k8-4-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--page-8k8-4-2-light-text-color);
      background-color: var(--page-8k8-4-2-secondary-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 1.1em;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

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

    @media (max-width: 768px) {
      .page-8k8-4-2__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-8k8-4-2__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-4-2__faq-answer {
        padding: 0 20px;
        font-size: 1em;
      }
      .page-8k8-4-2__faq-item.active .page-8k8-4-2__faq-answer {
        padding: 15px 20px !important;
      }
    }

    .page-8k8-4-2__promo-banner {
      background-color: var(--page-8k8-4-2-accent-color);
      padding: 30px 20px;
      text-align: center;
      margin-top: 40px;
      border-radius: 10px;
    }

    .page-8k8-4-2__promo-title {
      font-size: 2.5em;
      color: var(--page-8k8-4-2-text-color);
      margin-bottom: 15px;
    }

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

    .page-8k8-4-2__promo-text {
      font-size: 1.3em;
      color: var(--page-8k8-4-2-text-color);
      margin-bottom: 25px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 768px) {
      .page-8k8-4-2__promo-text {
        font-size: 1em;
      }
    }

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

    .page-8k8-4-2__register-button:hover {
      background-color: #FFC107; /* Slightly darker gold */
      transform: scale(1.05);
    }

    .page-8k8-4-2__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
    }
    .page-8k8-4-2__content-image {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }
    @media (max-width: 768px) {
      .page-8k8-4-2__content-image {
        max-width: 100% !important;
        height: auto !important;
      }
    }
  