
    :root {
      --page-8k8-17-primary-color: #FFD700; /* Gold */
      --page-8k8-17-secondary-color: #1A1A1A; /* Dark Grey */
      --page-8k8-17-accent-color: #007BFF; /* Blue for highlights */
      --page-8k8-17-text-color: #E0E0E0; /* Light Grey for text */
      --page-8k8-17-dark-text-color: #000000; /* Black for dark backgrounds */
      --page-8k8-17-bg-color: #0F0F0F; /* Dark background */
      --page-8k8-17-card-bg: #222222; /* Slightly lighter dark for cards */
      --page-8k8-17-border-color: #444444; /* Border color */
      --page-8k8-17-button-hover-bg: #E6B800; /* Darker gold on hover */
      --page-8k8-17-faq-hover-bg: #333333; /* FAQ item hover */
    }

    .page-8k8-17 {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-17-text-color);
      background-color: var(--page-8k8-17-bg-color);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

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

    .page-8k8-17__hero-section {
      position: relative;
      width: 100%;
      height: 60vh;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      padding: 10px 0; /* Small decorative padding-top */
    }

    .page-8k8-17__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6);
    }

    .page-8k8-17__hero-content {
      position: relative;
      z-index: 2;
      color: #FFFFFF;
      max-width: 800px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
    }

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

    .page-8k8-17__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #F0F0F0;
    }

    .page-8k8-17__button {
      display: inline-block;
      background-color: var(--page-8k8-17-primary-color);
      color: var(--page-8k8-17-dark-text-color);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 1em;
    }

    .page-8k8-17__button:hover {
      background-color: var(--page-8k8-17-button-hover-bg);
    }

    .page-8k8-17__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-8k8-17__section:nth-of-type(even) {
      background-color: var(--page-8k8-17-secondary-color);
    }

    .page-8k8-17__section-title {
      font-size: 2.5em;
      color: var(--page-8k8-17-primary-color);
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
    }

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

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

    .page-8k8-17__card {
      background-color: var(--page-8k8-17-card-bg);
      border-radius: 10px;
      padding: 30px;
      text-align: left;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      box-sizing: border-box;
      border: 1px solid var(--page-8k8-17-border-color);
    }

    .page-8k8-17__card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-17__card-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-8k8-17__card-image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

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

    .page-8k8-17__card-description {
      font-size: 1em;
      color: var(--page-8k8-17-text-color);
      flex-grow: 1;
    }

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

    .page-8k8-17__list-item {
      background-color: var(--page-8k8-17-card-bg);
      padding: 20px 30px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      text-align: center;
      flex: 1 1 calc(33% - 40px); /* 3 items per row */
      min-width: 280px;
      box-sizing: border-box;
      color: var(--page-8k8-17-text-color);
      border: 1px solid var(--page-8k8-17-border-color);
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    .page-8k8-17__list-item strong {
      color: var(--page-8k8-17-primary-color);
      font-size: 1.1em;
    }

    .page-8k8-17__faq-section {
      background-color: var(--page-8k8-17-secondary-color);
      padding: 60px 0;
      text-align: center;
    }

    .page-8k8-17__faq-list {
      max-width: 900px;
      margin: 40px auto 0 auto;
      text-align: left;
      padding: 0;
      list-style: none;
    }

    .page-8k8-17__faq-item {
      background-color: var(--page-8k8-17-card-bg);
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--page-8k8-17-border-color);
    }

    .page-8k8-17__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--page-8k8-17-card-bg);
      color: var(--page-8k8-17-primary-color);
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
      border-bottom: 1px solid transparent; /* To prevent double border on active */
    }

    .page-8k8-17__faq-question:hover {
      background-color: var(--page-8k8-17-faq-hover-bg);
    }

    .page-8k8-17__faq-question h3 {
      margin: 0;
      color: var(--page-8k8-17-primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-17__faq-toggle {
      font-size: 1.5em;
      margin-left: 20px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      color: var(--page-8k8-17-primary-color);
    }

    .page-8k8-17__faq-item.active .page-8k8-17__faq-toggle {
      transform: rotate(45deg); /* Changes + to x or similar visually */
    }

    .page-8k8-17__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: var(--page-8k8-17-text-color);
      font-size: 1em;
      text-align: left;
    }

    .page-8k8-17__faq-item.active .page-8k8-17__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 25px !important;
      opacity: 1;
      border-top: 1px solid var(--page-8k8-17-border-color);
    }

    .page-8k8-17__promo-cta {
      background-color: var(--page-8k8-17-accent-color);
      color: #FFFFFF;
      padding: 50px 20px;
      text-align: center;
      margin-top: 60px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-17__promo-cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #FFFFFF;
    }

    .page-8k8-17__promo-cta-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-17__promo-link {
      background-color: var(--page-8k8-17-primary-color);
      color: var(--page-8k8-17-dark-text-color);
      padding: 18px 40px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-8k8-17__promo-link:hover {
      background-color: var(--page-8k8-17-button-hover-bg);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-8k8-17__hero-title {
        font-size: 2.8em;
      }

      .page-8k8-17__hero-description {
        font-size: 1.1em;
      }

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

      .page-8k8-17__content-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }

      .page-8k8-17__list-item {
        flex: 1 1 calc(50% - 30px); /* 2 items per row */
      }

      .page-8k8-17__promo-cta-title {
        font-size: 2.2em;
      }

      .page-8k8-17__promo-cta-description {
        font-size: 1.1em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-17__hero-section {
        height: 50vh;
        min-height: 300px;
      }

      .page-8k8-17__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-17__hero-description {
        font-size: 1em;
      }

      .page-8k8-17__button {
        padding: 12px 25px;
        font-size: 0.9em;
      }

      .page-8k8-17__section {
        padding: 40px 0;
      }

      .page-8k8-17__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-8k8-17__content-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-17__card {
        padding: 25px;
      }

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

      .page-8k8-17__list {
        padding: 0;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-8k8-17__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px 20px;
      }

      .page-8k8-17__faq-list {
        margin: 30px auto 0 auto;
        padding: 0 15px;
      }

      .page-8k8-17__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-8k8-17__faq-answer {
        padding: 0 20px;
        font-size: 0.95em;
      }

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

      .page-8k8-17__promo-cta {
        padding: 40px 15px;
        margin-top: 40px;
      }

      .page-8k8-17__promo-cta-title {
        font-size: 1.8em;
      }

      .page-8k8-17__promo-cta-description {
        font-size: 1em;
      }

      .page-8k8-17__promo-link {
        padding: 15px 30px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-17__hero-title {
        font-size: 1.8em;
      }

      .page-8k8-17__hero-description {
        font-size: 0.9em;
      }

      .page-8k8-17__section-title {
        font-size: 1.5em;
      }

      .page-8k8-17__faq-question {
        font-size: 1em;
      }

      .page-8k8-17__faq-answer {
        font-size: 0.9em;
      }
    }
  