
    /* Base styles for the page */
    .page-8k8-free-to-88 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    /* Section styling */
    .page-8k8-free-to-88__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      margin-bottom: 25px;
    }

    .page-8k8-free-to-88__section:first-of-type {
        padding-top: 50px; /* Base padding + 10px for header offset */
    }

    @media (max-width: 768px) {
        .page-8k8-free-to-88__section:first-of-type {
            padding-top: 40px; /* Reduced for mobile */
        }
    }

    .page-8k8-free-to-88__section--dark {
        background-color: #2a0a5e; /* Dark purple */
        color: #fff;
    }

    .page-8k8-free-to-88__section--dark .page-8k8-free-to-88__heading,
    .page-8k8-free-to-88__section--dark .page-8k8-free-to-88__subheading,
    .page-8k8-free-to-88__section--dark .page-8k8-free-to-88__text {
        color: #fff;
    }

    /* Headings */
    .page-8k8-free-to-88__heading {
      font-size: 2.5em;
      color: #6a0dad; /* Royal purple */
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-8k8-free-to-88__subheading {
      font-size: 1.8em;
      color: #4a0072; /* Darker purple */
      text-align: center;
      margin-bottom: 25px;
      font-weight: 600;
    }

    .page-8k8-free-to-88__card-title {
        font-size: 1.3em;
        color: #6a0dad;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .page-8k8-free-to-88__text {
      font-size: 1em;
      margin-bottom: 15px;
      text-align: justify;
    }

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

    /* Hero Section */
    .page-8k8-free-to-88__hero-section {
      background: linear-gradient(135deg, #4a0072 0%, #8e2de2 100%);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      margin-bottom: 25px;
      border-radius: 10px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-free-to-88__hero-heading {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.2;
    }

    .page-8k8-free-to-88__hero-subtext {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-free-to-88__promo-button {
      display: inline-block;
      background-color: #ffc107; /* Gold/Yellow */
      color: #2a0a5e;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-free-to-88__promo-button:hover {
      background-color: #ffdb58;
      transform: translateY(-3px);
    }

    /* Image Styling */
    .page-8k8-free-to-88__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-free-to-88__image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    /* Features/Highlights Section */
    .page-8k8-free-to-88__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .page-8k8-free-to-88__feature-card {
      background-color: #f0f0f0;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .page-8k8-free-to-88__feature-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-free-to-88__feature-icon {
      max-width: 250px; /* Min size 200x200 */
      height: auto;
      margin-bottom: 15px;
    }

    .page-8k8-free-to-88__feature-title {
      font-size: 1.4em;
      color: #6a0dad;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-free-to-88__feature-description {
      font-size: 0.95em;
      color: #555;
    }

    /* Steps Section */
    .page-8k8-free-to-88__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-8k8-free-to-88__step-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
      background-color: #fcfcfc;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-free-to-88__step-number {
      font-size: 2em;
      font-weight: bold;
      color: #ffc107;
      background-color: #6a0dad;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
      margin-right: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-free-to-88__step-content {
      flex-grow: 1;
    }

    .page-8k8-free-to-88__step-title {
      font-size: 1.5em;
      color: #4a0072;
      margin-bottom: 5px;
    }

    .page-8k8-free-to-88__step-description {
      font-size: 1em;
      color: #444;
    }

    /* FAQ Section */
    .page-8k8-free-to-88__faq-list {
      margin-top: 30px;
    }

    .page-8k8-free-to-88__faq-item {
      background-color: #f0f0f0;
      border-radius: 8px;
      margin-bottom: 15px;
      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;
      background-color: #6a0dad;
      color: #fff;
      cursor: pointer;
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-free-to-88__faq-question h3 {
        margin: 0;
        color: inherit;
        pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-8k8-free-to-88__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click event on parent */
    }

    .page-8k8-free-to-88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Adjust padding to match question, but 0px top/bottom when collapsed */
      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: 0.95em;
    }

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

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-free-to-88__hero-heading {
        font-size: 3em;
      }
      .page-8k8-free-to-88__hero-subtext {
        font-size: 1.3em;
      }
      .page-8k8-free-to-88__heading {
        font-size: 2.2em;
      }
      .page-8k8-free-to-88__subheading {
        font-size: 1.6em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-free-to-88__hero-heading {
        font-size: 2.5em;
      }
      .page-8k8-free-to-88__hero-subtext {
        font-size: 1.1em;
      }
      .page-8k8-free-to-88__heading {
        font-size: 1.8em;
      }
      .page-8k8-free-to-88__subheading {
        font-size: 1.4em;
      }
      .page-8k8-free-to-88__section {
        padding: 30px 15px;
      }
      .page-8k8-free-to-88__promo-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      /* List item mobile responsiveness */
      .page-8k8-free-to-88__steps-list,
      .page-8k8-free-to-88__features-grid {
        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__step-item,
      .page-8k8-free-to-88__feature-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important; /* Adjust padding for smaller screens */
        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-free-to-88__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
        margin-right: 15px;
      }
      .page-8k8-free-to-88__step-title {
        font-size: 1.3em;
      }
      .page-8k8-free-to-88__step-description {
        font-size: 0.9em;
      }

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

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

    @media (max-width: 480px) {
        .page-8k8-free-to-88__hero-heading {
            font-size: 2em;
        }
        .page-8k8-free-to-88__hero-subtext {
            font-size: 1em;
        }
        .page-8k8-free-to-88__heading {
            font-size: 1.6em;
        }
        .page-8k8-free-to-88__subheading {
            font-size: 1.2em;
        }
        .page-8k8-free-to-88__promo-button {
            font-size: 1em;
            padding: 10px 20px;
        }
        .page-8k8-free-to-88__faq-question {
            font-size: 0.95em;
            padding: 12px 15px;
        }
        .page-8k8-free-to-88__faq-answer {
            padding: 12px 15px;
        }
        .page-8k8-free-to-88__faq-item.active .page-8k8-free-to-88__faq-answer {
            padding: 12px 15px !important;
        }
    }
  