
    /* Page-specific CSS for 88í */
    .page-88 {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f0f2f5;
      line-height: 1.6;
    }

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

    .page-88__hero-section {
      position: relative;
      background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
      color: #fff;
      text-align: center;
      padding: 10px 0 60px 0; /* Small top padding as body already has header offset */
      overflow: hidden;
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

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

    .page-88__hero-content {
      position: relative;
      z-index: 1;
      padding: 40px 20px;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-88__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      color: #ffd700; /* Gold color for emphasis */
    }

    .page-88__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-88__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      background-color: rgba(0, 0, 0, 0.7);
      padding: 10px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-88__button {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      cursor: pointer;
      border: none;
      outline: none;
      color: #fff;
    }

    .page-88__button--primary {
      background-color: #ff4500; /* OrangeRed */
    }

    .page-88__button--primary:hover {
      background-color: #e63900;
      transform: translateY(-2px);
    }

    .page-88__button--secondary {
      background-color: #007bff; /* Blue */
    }

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

    .page-88__section {
      padding: 60px 0;
      text-align: center;
    }

    .page-88__section:nth-of-type(even) {
      background-color: #e9ecef;
    }

    .page-88__section-title {
      font-size: 2.2em;
      margin-bottom: 40px;
      color: #0f2027;
      position: relative;
      display: inline-block;
    }

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

    .page-88__products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-88__product-card {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      padding-bottom: 20px;
    }

    .page-88__product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .page-88__product-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #f8f9fa;
    }

    .page-88__product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }

    .page-88__product-content {
      padding: 20px;
    }

    .page-88__product-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: #0f2027;
      font-weight: bold;
    }

    .page-88__product-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-88__promotion-card {
      background: linear-gradient(45deg, #ff7e5f, #feb47b);
      color: #fff;
      border-radius: 15px;
      padding: 30px;
      margin-bottom: 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      text-align: center;
    }

    .page-88__promotion-title {
      font-size: 1.8em;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-88__promotion-description {
      font-size: 1.1em;
      margin-bottom: 25px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-88__promotion-link {
      background-color: #0f2027;
      color: #fff;
      padding: 12px 30px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-88__promotion-link:hover {
      background-color: #2c5364;
      transform: translateY(-2px);
    }

    .page-88__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-88__feature-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-88__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .page-88__feature-icon-wrapper {
      width: 100px;
      height: 100px;
      margin: 0 auto 20px;
      background-color: #ff4500;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-88__feature-icon {
      width: 70%;
      height: 70%;
      object-fit: contain;
    }

    .page-88__feature-title {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: #0f2027;
      font-weight: bold;
    }

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

    .page-88__faq-section {
      background-color: #f8f9fa;
    }

    .page-88__faq-list {
      max-width: 900px;
      margin: 40px auto 0;
      text-align: left;
    }

    .page-88__faq-item {
      background-color: #fff;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .page-88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #fff;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-88__faq-question:hover {
      background-color: #f0f2f5;
    }

    .page-88__faq-question h3 {
      margin: 0;
      font-size: 1.15em;
      color: #0f2027;
      pointer-events: none;
      flex-grow: 1;
    }

    .page-88__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ff4500;
      margin-left: 15px;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

    .page-88__faq-item.active .page-88__faq-toggle {
      transform: rotate(45deg);
    }

    .page-88__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: #555;
      font-size: 0.95em;
      text-align: left;
    }

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

    .page-88__contact-section {
      background-color: #0f2027;
      color: #fff;
      padding: 80px 0;
      text-align: center;
    }

    .page-88__contact-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #ffd700;
    }

    .page-88__contact-description {
      font-size: 1.1em;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-88__social-links {
      display: flex;
      justify-content: center;
      gap: 25px;
      margin-top: 30px;
    }

    .page-88__social-link {
      display: inline-block;
      width: 50px;
      height: 50px;
      background-color: #ff4500;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-88__social-link:hover {
      background-color: #e63900;
      transform: translateY(-3px);
    }

    .page-88__social-icon {
      width: 60%;
      height: 60%;
      object-fit: contain;
      filter: invert(100%) brightness(200%); /* Allowed for monochrome social icons */
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-88__hero-title {
        font-size: 2em;
      }

      .page-88__hero-description {
        font-size: 1em;
      }

      .page-88__section-title {
        font-size: 1.8em;
      }

      .page-88__floating-buttons {
        width: calc(100% - 40px);
        bottom: 10px;
        gap: 10px;
        padding: 8px 15px;
      }

      .page-88__button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-88__products-grid,
      .page-88__features-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
      }

      .page-88__product-card,
      .page-88__feature-item {
        margin: 0 auto;
        max-width: 400px;
      }

      .page-88__faq-list {
        padding: 0 15px;
      }

      .page-88__faq-question {
        padding: 15px 20px;
      }

      .page-88__faq-question h3 {
        font-size: 1em;
      }

      .page-88__faq-toggle {
        font-size: 1.2em;
      }

      .page-88__faq-answer {
        padding: 0 20px;
      }

      .page-88__faq-item.active .page-88__faq-answer {
        padding: 15px 20px !important;
      }

      .page-88__contact-title {
        font-size: 2em;
      }

      .page-88__contact-description {
        font-size: 1em;
      }

      .page-88__social-link {
        width: 45px;
        height: 45px;
      }

      /* List item responsive adjustments */
      .page-88__products-grid > div,
      .page-88__features-grid > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-88__products-grid,
      .page-88__features-grid {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-88__product-description,
      .page-88__feature-description,
      .page-88__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-88__product-image,
      .page-88__feature-icon {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-88__product-image-wrapper,
      .page-88__feature-icon-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        border-radius: 0;
      }
    }
  