
    .page-8k8-free-to-88 {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px;
    }

    /* Fixed header offset fallback - only apply if shared.css doesn't set body padding-top */
    /* .page-8k8-free-to-88 {
      padding-top: var(--header-offset, 122px);
    } */

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

    .page-8k8-free-to-88__hero-section {
      position: relative;
      color: #fff;
      text-align: center;
      padding: 10px 0 80px; /* Small padding-top as body should handle header offset */
      overflow: hidden;
      background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    }

    .page-8k8-free-to-88__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.3;
    }

    .page-8k8-free-to-88__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    .page-8k8-free-to-88__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #ffcc00; /* Gold */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-free-to-88__hero-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      color: #eee;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-free-to-88__cta-button {
      display: inline-block;
      background-color: #ffcc00; /* Gold */
      color: #000;
      padding: 15px 35px;
      border-radius: 50px;
      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-free-to-88__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    .page-8k8-free-to-88__section {
      padding: 60px 0;
      background-color: #fff;
      border-bottom: 1px solid #eee;
    }

    .page-8k8-free-to-88__section:nth-of-type(even) {
      background-color: #f5f5f5;
    }

    .page-8k8-free-to-88__section-title {
      font-size: 2.5em;
      color: #302b63;
      text-align: center;
      margin-bottom: 40px;
    }

    .page-8k8-free-to-88__content-wrapper {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
      margin-bottom: 40px;
    }

    .page-8k8-free-to-88__content-wrapper--reversed {
      flex-direction: row-reverse;
    }

    .page-8k8-free-to-88__text-content,
    .page-8k8-free-to-88__image-wrapper {
      flex: 1;
      min-width: 300px;
    }

    .page-8k8-free-to-88__image-wrapper {
      text-align: center;
    }

    .page-8k8-free-to-88__section-image {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
      object-fit: cover;
    }

    .page-8k8-free-to-88__list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-free-to-88__list-item {
      background-color: #e8eaf6; /* Light blue */
      margin-bottom: 15px;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: flex-start;
      gap: 15px;
      color: #333;
    }

    .page-8k8-free-to-88__list-item strong {
      color: #302b63;
    }

    .page-8k8-free-to-88__list-icon {
      font-size: 1.5em;
      color: #ffcc00;
      font-weight: bold;
    }

    .page-8k8-free-to-88__steps-list {
      list-style: none;
      padding: 0;
      counter-reset: step-counter;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .page-8k8-free-to-88__step-item {
      background-color: #fff;
      border: 2px solid #302b63;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      flex: 1;
      min-width: 280px;
      max-width: calc(33% - 20px);
      position: relative;
      counter-increment: step-counter;
      box-sizing: border-box;
    }

    .page-8k8-free-to-88__step-item::before {
      content: counter(step-counter);
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #ffcc00;
      color: #000;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5em;
      font-weight: bold;
      border: 3px solid #302b63;
    }

    .page-8k8-free-to-88__step-item h3 {
      margin-top: 20px;
      color: #302b63;
      font-size: 1.4em;
    }

    .page-8k8-free-to-88__faq-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .page-8k8-free-to-88__faq-list {
      max-width: 900px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

    .page-8k8-free-to-88__faq-item {
      background-color: #f0f0f0;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-free-to-88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #302b63;
      color: #fff;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-free-to-88__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjusted to fit parent font-size */
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-free-to-88__faq-question:hover {
      background-color: #24243e;
    }

    .page-8k8-free-to-88__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      color: #ffcc00;
    }

    .page-8k8-free-to-88__faq-item.active .page-8k8-free-to-88__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus */
    }

    .page-8k8-free-to-88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #fff;
      color: #333;
      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;
      border-top: 1px solid #eee;
    }

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

    /* --- Responsive Design --- */
    @media (max-width: 768px) {
      .page-8k8-free-to-88__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-free-to-88__hero-description {
        font-size: 1.1em;
      }

      .page-8k8-free-to-88__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-free-to-88__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-8k8-free-to-88__content-wrapper {
        flex-direction: column;
        gap: 30px;
      }

      .page-8k8-free-to-88__content-wrapper--reversed {
        flex-direction: column;
      }

      .page-8k8-free-to-88__text-content,
      .page-8k8-free-to-88__image-wrapper {
        min-width: unset;
        width: 100%;
      }

      .page-8k8-free-to-88__section-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-free-to-88__steps-list {
        flex-direction: column;
        gap: 15px;
      }

      .page-8k8-free-to-88__step-item {
        max-width: 100%;
        padding: 25px 20px;
      }

      .page-8k8-free-to-88__list-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }
      
      .page-8k8-free-to-88__list {
        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-free-to-88__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-8k8-free-to-88__faq-answer {
        font-size: 1em;
        padding: 0 20px;
      }
      
      .page-8k8-free-to-88__faq-item.active .page-8k8-free-to-88__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-free-to-88__hero-title {
        font-size: 2em;
      }

      .page-8k8-free-to-88__hero-description {
        font-size: 1em;
      }

      .page-8k8-free-to-88__section-title {
        font-size: 1.8em;
      }
    }
  