
    .page-88j {
      font-family: 'Arial', sans-serif;
      color: #ffffff;
      background-color: #1a1a2e; /* Dark background */
      line-height: 1.6;
      overflow-x: hidden; /* Prevent horizontal scroll on mobile */
    }

    .page-88j__section-title {
      font-size: 2.5em;
      text-align: center;
      margin-bottom: 20px;
      color: #ffd700; /* Gold accent */
      padding: 0 15px; /* Add padding for mobile */
      word-wrap: break-word; /* Ensure long titles wrap */
    }

    .page-88j__section-subtitle {
      font-size: 1.2em;
      text-align: center;
      margin-bottom: 40px;
      color: #cccccc;
      padding: 0 15px; /* Add padding for mobile */
      word-wrap: break-word; /* Ensure long subtitles wrap */
    }

    /* Hero Section */
    .page-88j__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 20px 40px; /* Adjusted padding-top for fixed header */
      background-color: #2e2e4a;
      position: relative;
      overflow: hidden;
    }

    .page-88j__hero-content {
      max-width: 900px;
      z-index: 2;
      position: relative;
    }

    .page-88j__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #ffd700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      word-wrap: break-word;
    }

    .page-88j__hero-description {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #ffffff;
      word-wrap: break-word;
    }

    .page-88j__hero-actions {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    }

    .page-88j__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap; /* Prevent button text from wrapping */
    }

    .page-88j__button--primary {
      background-color: #ffd700;
      color: #1a1a2e;
    }

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

    .page-88j__button--secondary {
      background-color: transparent;
      color: #ffd700;
      border: 2px solid #ffd700;
    }

    .page-88j__button--secondary:hover {
      background-color: #ffd700;
      color: #1a1a2e;
      transform: translateY(-2px);
    }

    .page-88j__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 1;
    }

    .page-88j__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.2; /* Subtle background image */
      filter: grayscale(50%); /* Allowed to make it subtle, not changing color */
    }

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

    .page-88j__floating-button {
      display: block;
      padding: 12px 25px;
      border-radius: 25px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      white-space: nowrap;
    }

    .page-88j__floating-button--register {
      background-color: #ffd700;
      color: #1a1a2e;
    }

    .page-88j__floating-button--register:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-88j__floating-button--login {
      background-color: #4CAF50; /* Green for login */
      color: #ffffff;
    }

    .page-88j__floating-button--login:hover {
      background-color: #45a049;
      transform: translateY(-2px);
    }

    /* Product Grid */
    .page-88j__products-section,
    .page-88j__promotions-section,
    .page-88j__why-us-section,
    .page-88j__providers-section,
    .page-88j__payments-section,
    .page-88j__faq-section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-88j__product-grid,
    .page-88j__promo-grid,
    .page-88j__why-us-grid,
    .page-88j__provider-grid,
    .page-88j__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-content: center;
    }

    .page-88j__product-item,
    .page-88j__promo-item,
    .page-88j__why-us-item {
      background-color: #2e2e4a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      text-align: center;
      padding-bottom: 20px;
      transition: transform 0.3s ease;
    }

    .page-88j__product-item:hover,
    .page-88j__promo-item:hover,
    .page-88j__why-us-item:hover {
      transform: translateY(-5px);
    }

    .page-88j__product-image,
    .page-88j__promo-image,
    .page-88j__why-us-image {
      width: 100%;
      max-width: 100%; /* Ensure responsiveness */
      height: 250px; /* Fixed height for consistency */
      object-fit: cover;
      display: block;
      margin-bottom: 20px;
    }

    .page-88j__why-us-image {
      height: 200px; /* Slightly smaller for feature images */
      margin: 0 auto 20px;
      border-radius: 8px;
    }

    .page-88j__product-title,
    .page-88j__promo-title,
    .page-88j__why-us-title {
      font-size: 1.6em;
      color: #ffd700;
      margin-bottom: 10px;
      padding: 0 15px;
      word-wrap: break-word;
    }

    .page-88j__product-description,
    .page-88j__promo-description,
    .page-88j__why-us-description {
      font-size: 1em;
      color: #cccccc;
      padding: 0 15px;
      word-wrap: break-word;
    }

    /* Providers and Payments */
    .page-88j__provider-grid,
    .page-88j__payment-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
    }

    .page-88j__provider-item,
    .page-88j__payment-item {
      background-color: #2e2e4a;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease;
    }

    .page-88j__provider-item:hover,
    .page-88j__payment-item:hover {
      transform: translateY(-3px);
    }

    .page-88j__provider-item a,
    .page-88j__payment-item a {
      display: block; /* Make the whole area clickable */
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-88j__provider-logo,
    .page-88j__payment-logo {
      max-width: 100%;
      max-height: 80px; /* Limit height for logos */
      width: auto;
      height: auto;
      object-fit: contain;
      filter: brightness(0.8) grayscale(100%); /* Subtle desaturation for logos */
      transition: filter 0.3s ease;
    }

    .page-88j__provider-item:hover .page-88j__provider-logo,
    .page-88j__payment-item:hover .page-88j__payment-logo {
      filter: brightness(1) grayscale(0%); /* Restore color on hover */
    }

    /* FAQ Section */
    .page-88j__faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

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

    .page-88j__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #3a3a5e; /* Slightly different background for question */
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: background-color 0.3s ease;
    }

    .page-88j__faq-question:hover {
      background-color: #4a4a7e;
    }

    .page-88j__faq-question-text {
      font-size: 1.2em;
      color: #ffffff;
      margin: 0;
      pointer-events: none; /* Prevent text from blocking click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
      flex-grow: 1; /* Allow text to take available space */
    }

    .page-88j__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #ffd700;
      margin-left: 20px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      flex-shrink: 0; /* Prevent toggle from shrinking */
    }

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

    .page-88j__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #cccccc;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-88j__faq-item.active .page-88j__faq-answer {
      max-height: 2000px !important; /* Use !important as required */
      padding: 20px 25px !important; /* Use !important as required */
      opacity: 1;
    }

    .page-88j__faq-answer p {
      margin: 0;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-88j__hero-section {
        padding-top: 60px; /* Adjust for smaller header on mobile */
      }

      .page-88j__hero-title {
        font-size: 2.2em;
      }

      .page-88j__hero-description {
        font-size: 1.1em;
      }

      .page-88j__hero-actions {
        flex-direction: column;
        gap: 15px;
      }

      .page-88j__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

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

      .page-88j__section-subtitle {
        font-size: 1em;
      }

      .page-88j__products-section,
      .page-88j__promotions-section,
      .page-88j__why-us-section,
      .page-88j__providers-section,
      .page-88j__payments-section,
      .page-88j__faq-section {
        padding: 40px 15px; /* More padding on sides for mobile */
      }

      .page-88j__product-grid,
      .page-88j__promo-grid,
      .page-88j__why-us-grid,
      .page-88j__provider-grid,
      .page-88j__payment-grid {
        grid-template-columns: 1fr; /* Single column layout for most grids */
        gap: 20px;
      }

      .page-88j__product-item,
      .page-88j__promo-item,
      .page-88j__why-us-item,
      .page-88j__provider-item,
      .page-88j__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px; /* Adjust padding for items */
        padding-right: 15px;
      }

      .page-88j__product-image,
      .page-88j__promo-image,
      .page-88j__why-us-image,
      .page-88j__provider-logo,
      .page-88j__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-88j__product-image,
      .page-88j__promo-image {
        height: 200px; /* Adjust height for mobile */
      }

      .page-88j__why-us-image {
        height: 150px;
      }

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

      .page-88j__faq-question-text {
        font-size: 1.1em;
      }

      .page-88j__faq-toggle {
        font-size: 1.5em;
      }

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

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

      .page-88j__floating-buttons {
        bottom: 10px;
        gap: 10px;
        padding: 8px;
        width: calc(100% - 40px); /* Allow some padding on sides */
        max-width: 350px; /* Limit width */
      }

      .page-88j__floating-button {
        flex: 1; /* Make buttons take equal space */
        padding: 10px 15px;
        font-size: 0.9em;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .page-88j__hero-title {
        font-size: 1.8em;
      }
      .page-88j__hero-description {
        font-size: 1em;
      }
      .page-88j__button {
        padding: 12px 20px;
        font-size: 1em;
      }
      .page-88j__section-title {
        font-size: 1.5em;
      }
      .page-88j__section-subtitle {
        font-size: 0.9em;
      }
    }
  