
    /* General styling for the specific page */
    .page-88x-com {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a2e;
      color: #f0f0f0;
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll */
      padding-top: 10px; /* Small decorative top padding, assuming body already has padding-top from header-offset */
    }

    /* Section base styles */
    .page-88x-com__hero-section,
    .page-88x-com__intro-section,
    .page-88x-com__products-section,
    .page-88x-com__promo-section,
    .page-88x-com__news-section,
    .page-88x-com__why-choose-section,
    .page-88x-com__faq-section,
    .page-88x-com__cta-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    /* Titles */
    .page-88x-com__section-title {
      font-size: 2.2em;
      color: #e94560;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-88x-com__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #00b894;
      border-radius: 2px;
    }

    .page-88x-com__brand-highlight {
      color: #f0f0f0; /* Ensure keyword is visible on dark background */
      font-weight: bold;
    }

    /* Buttons (no links) */
    .page-88x-com__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 8px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      text-align: center;
      border: none;
      font-size: 1em;
      box-sizing: border-box;
    }

    .page-88x-com__button--primary {
      background-color: #e94560;
      color: #f0f0f0;
    }

    .page-88x-com__button--primary:hover {
      background-color: #d13a52;
      transform: translateY(-2px);
    }

    .page-88x-com__button--secondary {
      background-color: transparent;
      color: #00b894;
      border: 2px solid #00b894;
    }

    .page-88x-com__button--secondary:hover {
      background-color: #00b894;
      color: #1a1a2e;
      transform: translateY(-2px);
    }

    .page-88x-com__button--small {
      padding: 8px 18px;
      font-size: 0.9em;
      background-color: #00b894;
      color: #1a1a2e;
      border: none;
    }

    .page-88x-com__button--small:hover {
      background-color: #008f75;
      transform: translateY(-1px);
    }

    .page-88x-com__button--large {
      padding: 15px 30px;
      font-size: 1.1em;
      background-color: #e94560;
      color: #f0f0f0;
    }

    .page-88x-com__button--large:hover {
      background-color: #d13a52;
      transform: translateY(-3px);
    }


    /* Hero Section */
    .page-88x-com__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      min-height: 60vh; /* Adjust for mobile view */
      justify-content: center;
      padding-top: 50px; /* Adjust for potential fixed header */
    }

    .page-88x-com__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.3;
    }

    .page-88x-com__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
    }

    .page-88x-com__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #f0f0f0;
      line-height: 1.2;
    }

    .page-88x-com__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #d0d0d0;
    }

    .page-88x-com__hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    /* Intro Section */
    .page-88x-com__intro-text {
      text-align: center;
      margin-bottom: 40px;
      font-size: 1.1em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-88x-com__features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
    }

    .page-88x-com__feature-item {
      background-color: #2b2b45;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-88x-com__feature-item:hover {
      transform: translateY(-5px);
    }

    .page-88x-com__feature-icon {
      width: 200px;
      height: 200px;
      object-fit: contain; /* or cover, depending on desired effect */
      max-width: 100%;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-88x-com__feature-title {
      font-size: 1.5em;
      color: #e94560;
      margin-bottom: 10px;
    }

    .page-88x-com__feature-description {
      color: #d0d0d0;
    }

    /* Products Section */
    .page-88x-com__products-intro {
      text-align: center;
      margin-bottom: 40px;
      font-size: 1.1em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-88x-com__product-category {
      background-color: #2b2b45;
      padding: 30px;
      border-radius: 10px;
      margin-bottom: 30px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .page-88x-com__category-title {
      font-size: 1.8em;
      color: #00b894;
      margin-bottom: 15px;
    }

    .page-88x-com__category-description {
      margin-bottom: 20px;
      color: #d0d0d0;
    }

    .page-88x-com__category-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 25px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    /* Promo Section */
    .page-88x-com__promo-intro {
      text-align: center;
      margin-bottom: 40px;
      font-size: 1.1em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-88x-com__promo-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .page-88x-com__promo-card {
      background-color: #2b2b45;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-88x-com__promo-card:hover {
      transform: translateY(-5px);
    }

    .page-88x-com__promo-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-88x-com__promo-title {
      font-size: 1.5em;
      color: #e94560;
      margin-bottom: 10px;
    }

    .page-88x-com__promo-description {
      color: #d0d0d0;
      margin-bottom: 20px;
    }

    /* News Section */
    .page-88x-com__news-intro {
      text-align: center;
      margin-bottom: 40px;
      font-size: 1.1em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-88x-com__news-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .page-88x-com__news-item {
      background-color: #2b2b45;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-88x-com__news-item:hover {
      transform: translateY(-5px);
    }

    .page-88x-com__news-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-88x-com__news-title {
      font-size: 1.5em;
      color: #00b894;
      margin-bottom: 10px;
    }

    .page-88x-com__news-date {
      font-size: 0.9em;
      color: #aaa;
      margin-bottom: 15px;
    }

    .page-88x-com__news-summary {
      color: #d0d0d0;
      margin-bottom: 20px;
    }

    /* Why Choose Section */
    .page-88x-com__why-choose-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
    }

    .page-88x-com__why-choose-item {
      background-color: #2b2b45;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-88x-com__why-choose-item:hover {
      transform: translateY(-5px);
    }

    .page-88x-com__why-choose-icon {
      width: 200px; /* Min size 200x200 */
      height: 200px;
      object-fit: contain;
      max-width: 100%;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-88x-com__why-choose-title {
      font-size: 1.5em;
      color: #e94560;
      margin-bottom: 10px;
    }

    .page-88x-com__why-choose-description {
      color: #d0d0d0;
    }

    /* FAQ Section */
    .page-88x-com__faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-88x-com__faq-item {
      background-color: #2b2b45;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      overflow: hidden;
    }

    .page-88x-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #3a3a5a;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-88x-com__faq-question:hover {
      background-color: #4a4a6a;
    }

    .page-88x-com__faq-question-text {
      font-size: 1.2em;
      color: #f0f0f0;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event on parent div */
    }

    .page-88x-com__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #00b894;
      margin-left: 15px;
      pointer-events: none; /* Prevent span from blocking click event on parent div */
      transition: transform 0.3s ease;
    }

    .page-88x-com__faq-item.active .page-88x-com__faq-toggle {
      transform: rotate(45deg); /* Change + to X-like or - */
      color: #e94560;
    }

    .page-88x-com__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: #d0d0d0;
    }

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

    .page-88x-com__faq-answer p {
      margin-bottom: 0;
    }


    /* CTA Section */
    .page-88x-com__cta-section {
      text-align: center;
      position: relative;
      overflow: hidden;
      padding: 60px 20px;
    }

    .page-88x-com__cta-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.2;
    }

    .page-88x-com__cta-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
    }

    .page-88x-com__cta-title {
      font-size: 2.5em;
      color: #f0f0f0;
      margin-bottom: 20px;
    }

    .page-88x-com__cta-description {
      font-size: 1.1em;
      color: #d0d0d0;
      margin-bottom: 30px;
    }

    /* Responsive Design */
    @media (min-width: 768px) {
      .page-88x-com__hero-title {
        font-size: 3.5em;
      }
      .page-88x-com__section-title {
        font-size: 2.8em;
      }
      .page-88x-com__features-grid,
      .page-88x-com__promo-grid,
      .page-88x-com__news-grid,
      .page-88x-com__why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .page-88x-com__product-category {
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 30px;
      }
      .page-88x-com__product-category:nth-child(even) {
        flex-direction: row-reverse;
      }
      .page-88x-com__category-image {
        flex-basis: 40%;
        margin-bottom: 0;
      }
      .page-88x-com__product-category > div {
        flex-basis: 60%;
      }
      .page-88x-com__category-title {
        text-align: left;
      }
      .page-88x-com__category-description {
        text-align: left;
      }
      .page-88x-com__product-category .page-88x-com__button {
        margin-left: 0;
      }
      .page-88x-com__cta-title {
        font-size: 3em;
      }
    }

    @media (min-width: 1024px) {
      .page-88x-com__features-grid,
      .page-88x-com__promo-grid,
      .page-88x-com__why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .page-88x-com__news-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* Mobile specific overrides for lists, images, and general padding */
    @media (max-width: 768px) {
      .page-88x-com__hero-title {
        font-size: 2em;
      }
      .page-88x-com__hero-description {
        font-size: 1em;
      }
      .page-88x-com__hero-buttons {
        flex-direction: column;
        gap: 15px;
      }
      .page-88x-com__button {
        width: 100%;
      }
      .page-88x-com__section-title {
        font-size: 1.8em;
      }
      .page-88x-com__intro-text,
      .page-88x-com__products-intro,
      .page-88x-com__promo-intro,
      .page-88x-com__news-intro {
        font-size: 0.95em;
      }
      .page-88x-com__feature-title,
      .page-88x-com__category-title,
      .page-88x-com__promo-title,
      .page-88x-com__news-title,
      .page-88x-com__why-choose-title {
        font-size: 1.3em;
      }
      .page-88x-com__feature-description,
      .page-88x-com__category-description,
      .page-88x-com__promo-description,
      .page-88x-com__news-summary,
      .page-88x-com__why-choose-description {
        font-size: 0.9em;
      }
      .page-88x-com__faq-question-text {
        font-size: 1em;
      }
      .page-88x-com__faq-answer p {
        font-size: 0.9em;
      }
      .page-88x-com__cta-title {
        font-size: 2em;
      }
      .page-88x-com__cta-description {
        font-size: 1em;
      }

      /* Image responsiveness */
      .page-88x-com img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        display: block !important;
      }
      /* Containers for images */
      .page-88x-com__hero-section,
      .page-88x-com__intro-section,
      .page-88x-com__products-section,
      .page-88x-com__promo-section,
      .page-88x-com__news-section,
      .page-88x-com__why-choose-section,
      .page-88x-com__faq-section,
      .page-88x-com__cta-section,
      .page-88x-com__features-grid,
      .page-88x-com__promo-grid,
      .page-88x-com__news-grid,
      .page-88x-com__why-choose-grid,
      .page-88x-com__faq-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow-x: hidden !important; /* Ensure no horizontal scroll from padding */
      }

      /* Specific list item rules - although I used divs for lists, applying general rules for safety */
      .page-88x-com__features-grid > div, /* .page-88x-com__feature-item */
      .page-88x-com__promo-grid > div, /* .page-88x-com__promo-card */
      .page-88x-com__news-grid > div, /* .page-88x-com__news-item */
      .page-88x-com__why-choose-grid > div /* .page-88x-com__why-choose-item */
      {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 20px !important; /* Adjust padding for mobile to prevent content being too narrow */
        padding-right: 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      /* For product categories as well */
      .page-88x-com__product-category {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        flex-direction: column !important; /* Stack image and text */
        text-align: center !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
      }
      .page-88x-com__product-category:nth-child(even) {
        flex-direction: column !important;
      }
      .page-88x-com__category-title,
      .page-88x-com__category-description {
        text-align: center !important;
      }
      .page-88x-com__product-category .page-88x-com__button {
        margin-left: auto !important;
        margin-right: auto !important;
      }
    }
  