
    /* Page specific CSS styles */
    :root {
      --page-8k8-3__primary-color: #e44d26; /* A vibrant orange-red for branding */
      --page-8k8-3__secondary-color: #333;
      --page-8k8-3__accent-color: #f7b731; /* A bright yellow-orange */
      --page-8k8-3__text-color: #333;
      --page-8k8-3__light-text-color: #fff;
      --page-8k8-3__background-light: #f9f9f9;
      --page-8k8-3__background-dark: #222;
      --page-8k8-3__border-color: #ddd;
    }

    .page-8k8-3 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-3__text-color);
      background-color: var(--page-8k8-3__background-light);
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
      padding-bottom: 100px; /* Space for floating buttons */
    }

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

    .page-8k8-3__section--dark {
      background-color: var(--page-8k8-3__background-dark);
      color: var(--page-8k8-3__light-text-color);
    }

    .page-8k8-3__hero-section {
      background-color: #0a0a0a;
      background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
      color: var(--page-8k8-3__light-text-color);
      text-align: center;
      padding: 100px 20px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Decorative top padding */
    }

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

    .page-8k8-3__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-3__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: var(--page-8k8-3__accent-color);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-3__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
    }

    .page-8k8-3__button {
      display: inline-block;
      background-color: var(--page-8k8-3__primary-color);
      color: var(--page-8k8-3__light-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-3__button:hover {
      background-color: #c74121;
    }

    .page-8k8-3__promo-button {
      background-color: var(--page-8k8-3__accent-color);
      color: var(--page-8k8-3__text-color);
    }

    .page-8k8-3__promo-button:hover {
      background-color: #e6a72e;
    }

    .page-8k8-3__content-block {
      margin-bottom: 40px;
      text-align: center;
    }

    .page-8k8-3__content-block h2 {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: var(--page-8k8-3__primary-color);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-3__content-block h3 {
      font-size: 1.8em;
      margin-bottom: 15px;
      color: var(--page-8k8-3__secondary-color);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-3__content-block p {
      font-size: 1.1em;
      margin-bottom: 15px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8-3__grid-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      text-align: center;
      border: 1px solid var(--page-8k8-3__border-color);
      box-sizing: border-box;
    }

    .page-8k8-3__grid-item--dark {
      background-color: var(--page-8k8-3__background-dark);
      color: var(--page-8k8-3__light-text-color);
      border-color: #444;
    }

    .page-8k8-3__grid-item img {
      width: 100%;
      height: auto;
      max-width: 400px;
      margin-bottom: 20px;
      border-radius: 5px;
      object-fit: cover;
      max-height: 250px;
      box-sizing: border-box;
    }

    .page-8k8-3__step-list {
      list-style: none;
      padding: 0;
      margin: 30px auto;
      max-width: 800px;
    }

    .page-8k8-3__step-item {
      background-color: #fff;
      margin-bottom: 15px;
      padding: 20px 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
      display: flex;
      align-items: flex-start;
      text-align: left;
      border: 1px solid var(--page-8k8-3__border-color);
      box-sizing: border-box !important; /* Required for list items */
      word-wrap: break-word !important; /* Required for list items */
      overflow-wrap: break-word !important; /* Required for list items */
    }

    .page-8k8-3__step-number {
      background-color: var(--page-8k8-3__primary-color);
      color: var(--page-8k8-3__light-text-color);
      border-radius: 50%;
      width: 35px;
      height: 35px;
      min-width: 35px; /* Prevent shrinking */
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .page-8k8-3__step-content h4 {
      margin-top: 0;
      margin-bottom: 5px;
      color: var(--page-8k8-3__primary-color);
      font-size: 1.2em;
    }

    .page-8k8-3__faq-section {
      background-color: var(--page-8k8-3__background-light);
      padding: 60px 20px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-8k8-3__faq-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

    .page-8k8-3__faq-title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: var(--page-8k8-3__primary-color);
      text-align: center;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-3__faq-item {
      background-color: #fff;
      border: 1px solid var(--page-8k8-3__border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
      box-sizing: border-box;
    }

    .page-8k8-3__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #f0f0f0;
      transition: background-color 0.3s ease;
      box-sizing: border-box !important;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

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

    .page-8k8-3__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-8k8-3__secondary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    .page-8k8-3__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-3__primary-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      flex-shrink: 0;
    }

    .page-8k8-3__faq-item.active .page-8k8-3__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or rotate to -) */
    }

    .page-8k8-3__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;
      background-color: #fff;
      box-sizing: border-box !important;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

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

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

    .page-8k8-3__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 15px 10px;
      background-color: rgba(0, 0, 0, 0.85);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-8k8-3__floating-button {
      flex: 1;
      margin: 0 5px;
      padding: 12px 15px;
      border-radius: 5px;
      text-align: center;
      font-weight: bold;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      color: var(--page-8k8-3__light-text-color);
      background-color: var(--page-8k8-3__primary-color);
      box-sizing: border-box;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    .page-8k8-3__floating-button:hover {
      background-color: #c74121;
    }

    .page-8k8-3__floating-button--register {
      background-color: var(--page-8k8-3__accent-color);
      color: var(--page-8k8-3__text-color);
    }

    .page-8k8-3__floating-button--register:hover {
      background-color: #e6a72e;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-3__hero-title {
        font-size: 2.2em;
      }

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

      .page-8k8-3__section {
        padding: 30px 15px;
      }

      .page-8k8-3__content-block h2 {
        font-size: 1.8em;
      }

      .page-8k8-3__content-block h3 {
        font-size: 1.4em;
      }

      .page-8k8-3__content-block p {
        font-size: 1em;
      }

      .page-8k8-3__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-3__grid-item img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-3__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-3__step-number {
        margin-right: 0;
        margin-bottom: 10px;
      }

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

      .page-8k8-3__faq-title {
        font-size: 2em;
      }

      .page-8k8-3__faq-question {
        padding: 15px 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

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

      .page-8k8-3__faq-toggle {
        font-size: 1.5em;
      }

      .page-8k8-3__faq-answer {
        padding: 15px 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-3__floating-buttons {
        padding: 10px 5px;
      }

      .page-8k8-3__floating-button {
        font-size: 1em;
        padding: 10px 10px;
      }
    }
  