
    :root {
      --page-ee88-bg-color: #000000;
      --page-ee88-text-color-primary: #ffffff;
      --page-ee88-text-color-secondary: #ffd700; /* Gold/Yellow */
      --page-ee88-accent-color: #ffd700;
      --page-ee88-button-bg: #ffd700;
      --page-ee88-button-text: #000000;
      --page-ee88-border-color: #333333;
      --page-ee88-card-bg: #1a1a1a;
      --page-ee88-shadow-color: rgba(255, 215, 0, 0.2);
    }

    body {
      background-color: var(--page-ee88-bg-color);
      color: var(--page-ee88-text-color-primary);
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
    }

    .page-ee88 {
      background-color: var(--page-ee88-bg-color);
      color: var(--page-ee88-text-color-primary);
      padding-bottom: 50px; /* Ensure space for floating button */
    }

    .page-ee88__hero-section {
      position: relative;
      width: 100%;
      text-align: center;
      padding-top: 10px; /* Safe zone for fixed header on desktop */
      padding-bottom: 40px;
      overflow: hidden;
    }

    .page-ee88__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 8px;
    }

    .page-ee88__hero-content {
      position: relative;
      z-index: 1;
      padding: 20px;
      margin-top: 20px;
    }

    .page-ee88__hero-title {
      font-size: 2.5em;
      color: var(--page-ee88-text-color-secondary);
      margin-bottom: 15px;
      line-height: 1.2;
      text-shadow: 2px 2px 4px var(--page-ee88-shadow-color);
    }

    .page-ee88__hero-description {
      font-size: 1.1em;
      color: var(--page-ee88-text-color-primary);
      max-width: 800px;
      margin: 0 auto 30px auto;
    }

    .page-ee88__button {
      display: inline-block;
      background-color: var(--page-ee88-button-bg);
      color: var(--page-ee88-button-text);
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-ee88__button:hover {
      background-color: #ffdb4d;
      transform: translateY(-2px);
    }

    .page-ee88__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-ee88__section-title {
      font-size: 2em;
      color: var(--page-ee88-text-color-secondary);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-ee88__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--page-ee88-accent-color);
      border-radius: 2px;
    }

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

    .page-ee88__card {
      background-color: var(--page-ee88-card-bg);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px var(--page-ee88-shadow-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      border: 1px solid var(--page-ee88-border-color);
    }

    .page-ee88__card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px var(--page-ee88-shadow-color);
    }

    .page-ee88__card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistent card appearance */
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 15px;
    }

    .page-ee88__card-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      object-fit: cover; /* Ensures image covers the area without distortion */
      display: block;
    }

    .page-ee88__card-title {
      font-size: 1.4em;
      color: var(--page-ee88-text-color-secondary);
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-ee88__card-description {
      font-size: 0.95em;
      color: var(--page-ee88-text-color-primary);
      padding: 0 15px;
    }

    .page-ee88__feature-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-ee88__feature-item {
      background-color: var(--page-ee88-card-bg);
      padding: 20px;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      gap: 15px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--page-ee88-border-color);
    }

    .page-ee88__feature-icon {
      flex-shrink: 0;
      width: 60px;
      height: 60px;
      object-fit: contain;
    }

    .page-ee88__feature-text h3 {
      margin-top: 0;
      color: var(--page-ee88-text-color-secondary);
      font-size: 1.2em;
    }

    .page-ee88__feature-text p {
      margin-bottom: 0;
      color: var(--page-ee88-text-color-primary);
    }

    .page-ee88__provider-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      justify-items: center;
      align-items: center;
    }

    .page-ee88__provider-logo {
      width: 100%;
      max-width: 200px; /* Ensure logos are not too big but still meet min size */
      height: auto;
      object-fit: contain;
      padding: 10px;
      background-color: var(--page-ee88-card-bg);
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease;
      border: 1px solid var(--page-ee88-border-color);
    }

    .page-ee88__provider-logo:hover {
      transform: scale(1.05);
    }

    .page-ee88__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-ee88__faq-item {
      background-color: var(--page-ee88-card-bg);
      border: 1px solid var(--page-ee88-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .page-ee88__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #222222;
      color: var(--page-ee88-text-color-secondary);
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-ee88__faq-question:hover {
      background-color: #333333;
    }

    .page-ee88__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-ee88__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-ee88__faq-item.active .page-ee88__faq-toggle {
      transform: rotate(45deg); /* Plus to X (minus visual) */
    }

    .page-ee88__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-ee88-text-color-primary);
    }

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

    .page-ee88__floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      background-color: #ff4500; /* Orange-red for urgency */
      color: #ffffff;
      padding: 15px 25px;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      animation: page-ee88__pulse 1.5s infinite;
      cursor: pointer;
      text-decoration: none;
      border: none;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: background-color 0.3s ease;
    }

    .page-ee88__floating-button:hover {
      background-color: #e63e00;
    }

    @keyframes page-ee88__pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
      100% {
        transform: scale(1);
      }
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .page-ee88__hero-section {
        padding-top: 10px; /* Safe zone for fixed header on mobile */
        padding-bottom: 20px;
      }

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

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

      .page-ee88__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-ee88__section {
        padding: 30px 15px;
      }

      .page-ee88__section-title {
        font-size: 1.7em;
        margin-bottom: 30px;
      }

      .page-ee88__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-ee88__card-image-wrapper {
        height: 180px;
      }

      .page-ee88__card-title {
        font-size: 1.2em;
      }

      .page-ee88__feature-list {
        grid-template-columns: 1fr;
      }

      .page-ee88__provider-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
      }

      .page-ee88__floating-button {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.95em;
      }

      /* Image responsive optimization for mobile */
      .page-ee88 img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-ee88 div[class*="__image-wrapper"] { /* Catch all image containers */
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  