
    :root {
      --primary-color: #ffcc00; /* Gold/Yellow */
      --secondary-color: #3366ff; /* Blue */
      --accent-color: #ff3366; /* Pink/Red */
      --dark-background: #1a1a1a;
      --light-text: #ffffff;
      --medium-text: #cccccc;
      --border-color: #444444;
      --button-hover: #e6b800;
    }

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

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

    .page-8k8-8__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
      background-size: cover;
      background-position: center;
      text-align: center;
      padding: 10px 20px 80px 20px; /* Adjusted padding-top for header offset */
      position: relative;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-8__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-8__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      border-radius: 10px;
      background-color: rgba(0, 0, 0, 0.5);
      max-width: 800px;
      margin: 0 auto;
      box-sizing: border-box;
    }

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

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

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

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

    .page-8k8-8__section {
      padding: 60px 0;
      text-align: center;
      border-bottom: 1px solid var(--border-color);
      box-sizing: border-box;
    }

    .page-8k8-8__section:last-of-type {
      border-bottom: none;
    }

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

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

    .page-8k8-8__content-text {
      font-size: 1.1em;
      color: var(--medium-text);
      margin-bottom: 20px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      text-align: left;
    }

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

    .page-8k8-8__grid-item {
      background-color: #2a2a2a;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      border: 1px solid var(--border-color);
    }

    .page-8k8-8__grid-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-8__grid-item-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-8__grid-item-description {
      color: var(--medium-text);
      font-size: 0.95em;
    }

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

    .page-8k8-8__image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      transition: transform 0.3s ease;
    }

    .page-8k8-8__image:hover {
      transform: scale(1.03);
    }

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

    .page-8k8-8__list-item {
      background-color: #2a2a2a;
      padding: 15px 25px;
      border-radius: 8px;
      color: var(--light-text);
      font-size: 1.1em;
      border: 1px solid var(--border-color);
      box-sizing: border-box;
      flex: 1 1 auto; /* Allow items to grow and shrink */
      min-width: 280px; /* Minimum width before wrapping */
      text-align: left;
    }

    .page-8k8-8__promo-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-8__promo-card {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      width: 100%;
      max-width: 380px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      box-sizing: border-box;
      border: 1px solid var(--border-color);
    }

    .page-8k8-8__promo-card:hover {
      transform: translateY(-10px);
    }

    .page-8k8-8__promo-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      max-width: 100%;
    }

    .page-8k8-8__promo-content {
      padding: 25px;
      text-align: left;
    }

    .page-8k8-8__promo-title {
      font-size: 1.6em;
      color: var(--primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-8__promo-description {
      color: var(--medium-text);
      font-size: 0.95em;
      margin-bottom: 20px;
    }

    .page-8k8-8__promo-link {
      color: var(--secondary-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-8k8-8__promo-link:hover {
      color: var(--primary-color);
    }

    /* FAQ Section */
    .page-8k8-8__faq-section {
      padding: 60px 0;
      text-align: center;
      box-sizing: border-box;
    }

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

    .page-8k8-8__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-sizing: border-box;
    }

    .page-8k8-8__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a3a;
      color: var(--light-text);
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-8__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevents text from blocking click event */
      color: var(--primary-color);
      font-size: 1.2em;
    }

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

    .page-8k8-8__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(--medium-text);
      font-size: 1em;
      box-sizing: border-box;
    }

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

    .page-8k8-8__faq-item.active .page-8k8-8__faq-toggle {
      transform: rotate(45deg); /* Transforms '+' to 'x' or similar, could also be '-' */
    }

    .page-8k8-8__faq-answer p {
      margin-bottom: 15px;
    }

    .page-8k8-8__faq-answer p:last-child {
      margin-bottom: 0;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-8__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-8__hero-subtitle {
        font-size: 1.2em;
      }
      .page-8k8-8__section-title {
        font-size: 2em;
      }
      .page-8k8-8__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-8k8-8__container {
        padding: 15px;
      }
      .page-8k8-8__hero-section {
        padding: 10px 15px 60px 15px;
      }
      .page-8k8-8__hero-title {
        font-size: 2em;
      }
      .page-8k8-8__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-8__button {
        padding: 12px 25px;
        font-size: 0.9em;
      }
      .page-8k8-8__section {
        padding: 40px 0;
      }
      .page-8k8-8__section-title {
        font-size: 1.8em;
      }
      .page-8k8-8__content-text {
        font-size: 1em;
        text-align: center;
      }
      .page-8k8-8__grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-8__list {
        flex-direction: column;
        gap: 15px;
        padding: 0; /* Ensure no extra padding on ul */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-8__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 20px !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-8__image-wrapper, .page-8k8-8__promo-card {
        max-width: 100%;
        width: 100%;
      }
      .page-8k8-8__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-8__promo-cards {
        flex-direction: column;
        align-items: center;
      }
      .page-8k8-8__faq-list {
        padding: 0 10px;
      }
      .page-8k8-8__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-8k8-8__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-8__faq-answer {
        padding: 0 20px;
        font-size: 0.95em;
      }
      .page-8k8-8__faq-item.active .page-8k8-8__faq-answer {
        padding: 15px 20px !important;
      }
    }

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