
    /* Global styles for the page, scoped to .page-8k8-free-to-88 */
    .page-8k8-free-to-88 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f9fa;
      padding-top: 10px; /* Small top padding, assuming body already has header offset */
    }

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

    .page-8k8-free-to-88__section {
      background-color: #ffffff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-free-to-88__hero-section {
      position: relative;
      color: #ffffff;
      text-align: center;
      padding: 100px 20px;
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 450px;
      box-sizing: border-box;
      background-color: #343a40; /* Fallback */
    }

    .page-8k8-free-to-88__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Allowed for background darkening, not color change */
    }

    .page-8k8-free-to-88__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .page-8k8-free-to-88__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #ffc107; /* Gold color for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-free-to-88__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      color: #e0e0e0;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-free-to-88__button {
      display: inline-block;
      background-color: #007bff;
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-free-to-88__button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-8k8-free-to-88__title {
      font-size: 2.5em;
      color: #007bff;
      margin-bottom: 25px;
      text-align: center;
      font-weight: bold;
    }

    .page-8k8-free-to-88__subtitle {
      font-size: 1.8em;
      color: #343a40;
      margin-bottom: 20px;
      text-align: center;
    }

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

    .page-8k8-free-to-88__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-8k8-free-to-88__list-item {
      background-color: #f1f1f1;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-free-to-88__list-item h3 {
      color: #007bff;
      margin-top: 0;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-8k8-free-to-88__list-item p {
      color: #666;
      font-size: 1em;
    }

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

    .page-8k8-free-to-88__image-wrapper {
      background-color: #f1f1f1;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      position: relative;
      padding-bottom: 75%; /* 4:3 Aspect Ratio */
      height: 0;
      box-sizing: border-box;
    }

    .page-8k8-free-to-88__image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 8px; /* Apply border-radius to the image itself */
    }

    /* FAQ Section Styles */
    .page-8k8-free-to-88__faq-section {
      background-color: #ffffff;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-free-to-88__faq-title {
      font-size: 2.2em;
      color: #007bff;
      margin-bottom: 30px;
      text-align: center;
      font-weight: bold;
    }

    .page-8k8-free-to-88__faq-item {
      margin-bottom: 15px;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      overflow: hidden;
    }

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

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

    .page-8k8-free-to-88__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #343a40;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-8k8-free-to-88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #ffffff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
    }

    .page-8k8-free-to-88__faq-answer p {
      margin: 15px 0;
      font-size: 1em;
    }

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

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

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-8k8-free-to-88__hero-title {
        font-size: 3em;
      }
      .page-8k8-free-to-88__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-free-to-88__title {
        font-size: 2em;
      }
      .page-8k8-free-to-88__subtitle {
        font-size: 1.5em;
      }
      .page-8k8-free-to-88__section {
        padding: 30px;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-free-to-88__container {
        padding: 15px;
      }
      .page-8k8-free-to-88__hero-section {
        padding: 80px 15px;
        min-height: 350px;
      }
      .page-8k8-free-to-88__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-free-to-88__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-free-to-88__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-8k8-free-to-88__title {
        font-size: 1.8em;
      }
      .page-8k8-free-to-88__subtitle {
        font-size: 1.3em;
      }
      .page-8k8-free-to-88__text {
        font-size: 1em;
      }
      .page-8k8-free-to-88__list {
        grid-template-columns: 1fr; /* Stack items on mobile */
        gap: 15px;
        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__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !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-free-to-88__image-grid {
        grid-template-columns: 1fr; /* Stack images on mobile */
        gap: 15px;
      }
      .page-8k8-free-to-88__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
      .page-8k8-free-to-88__image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-8k8-free-to-88__faq-question {
        padding: 15px;
        font-size: 1.1em;
      }
      .page-8k8-free-to-88__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-free-to-88__faq-answer {
        padding: 0 15px;
      }
      .page-8k8-free-to-88__faq-item.active .page-8k8-free-to-88__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-free-to-88__hero-title {
        font-size: 2em;
      }
      .page-8k8-free-to-88__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-free-to-88__button {
        font-size: 1em;
        padding: 10px 20px;
      }
      .page-8k8-free-to-88__title {
        font-size: 1.5em;
      }
      .page-8k8-free-to-88__subtitle {
        font-size: 1.1em;
      }
    }
  