
    /* Base Styles */
    .page-8k8-com-4 {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a2e;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-8k8-com-4__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      text-align: center;
    }

    .page-8k8-com-4__hero-section {
      background: linear-gradient(135deg, #0f0f22, #2a0a4a);
      color: #ffffff;
      padding-top: 10px; /* Small decorative top padding, assuming body has offset */
      padding-bottom: 60px;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-com-4__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .page-8k8-com-4__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #ffd700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-4__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-8k8-com-4__hero-button {
      display: inline-block;
      background-color: #ff4500;
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-4__hero-button:hover {
      background-color: #e63900;
      transform: translateY(-3px);
    }

    .page-8k8-com-4__hero-image-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 1;
      opacity: 0.3;
    }

    .page-8k8-com-4__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: blur(5px);
    }

    .page-8k8-com-4__about-section {
      background-color: #1a1a2e;
      color: #e0e0e0;
    }

    .page-8k8-com-4__title {
      font-size: 2.5em;
      margin-bottom: 30px;
      color: #ffd700;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com-4__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-4__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-4__feature-item {
      background-color: #2b2b4a;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-4__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com-4__feature-icon {
      width: 100%;
      max-width: 250px;
      height: auto;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-8k8-com-4__feature-title {
      font-size: 1.5em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-8k8-com-4__feature-description {
      font-size: 1em;
      color: #c0c0c0;
    }

    .page-8k8-com-4__providers-section {
      background-color: #2b2b4a;
    }

    .page-8k8-com-4__providers-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-com-4__provider-item {
      background-color: #1a1a2e;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-4__provider-item:hover {
      transform: scale(1.05);
    }

    .page-8k8-com-4__provider-logo {
      width: 100%;
      max-width: 200px;
      height: auto;
      border-radius: 5px;
    }

    .page-8k8-com-4__provider-name {
      margin-top: 15px;
      font-weight: bold;
      color: #ffffff;
    }

    .page-8k8-com-4__promotions-section {
      background-color: #1a1a2e;
    }

    .page-8k8-com-4__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-4__promotion-card {
      background-color: #2b2b4a;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      text-align: left;
    }

    .page-8k8-com-4__promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com-4__promotion-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .page-8k8-com-4__promotion-content {
      padding: 25px;
    }

    .page-8k8-com-4__promotion-title {
      font-size: 1.6em;
      color: #ffd700;
      margin-bottom: 10px;
    }

    .page-8k8-com-4__promotion-description {
      font-size: 1em;
      color: #c0c0c0;
      margin-bottom: 20px;
    }

    .page-8k8-com-4__promotion-button {
      display: inline-block;
      background-color: #ff4500;
      color: #ffffff;
      padding: 10px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-4__promotion-button:hover {
      background-color: #e63900;
    }

    .page-8k8-com-4__payments-section {
      background-color: #2b2b4a;
    }

    .page-8k8-com-4__payments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-com-4__payment-item {
      background-color: #1a1a2e;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-4__payment-item:hover {
      transform: scale(1.08);
    }

    .page-8k8-com-4__payment-logo {
      width: 100%;
      max-width: 150px;
      height: auto;
      border-radius: 5px;
    }

    .page-8k8-com-4__payment-name {
      margin-top: 10px;
      font-weight: bold;
      color: #ffffff;
      font-size: 0.9em;
    }

    .page-8k8-com-4__faq-section {
      background-color: #1a1a2e;
    }

    .page-8k8-com-4__faq-list {
      max-width: 800px;
      margin: 40px auto 0 auto;
      text-align: left;
    }

    .page-8k8-com-4__faq-item {
      background-color: #2b2b4a;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-com-4__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #3f3f6a;
      color: #ffd700;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-4__faq-question:hover {
      background-color: #4a4a7a;
    }

    .page-8k8-com-4__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-8k8-com-4__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      pointer-events: none; /* Prevents icon from interfering with click */
      transition: transform 0.3s ease;
    }

    .page-8k8-com-4__faq-item.active .page-8k8-com-4__faq-toggle {
      transform: rotate(45deg); /* Change + to X (visually like a minus sign) */
    }

    .page-8k8-com-4__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: #c0c0c0;
      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;
      text-align: left;
    }

    .page-8k8-com-4__faq-item.active .page-8k8-com-4__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to accommodate content */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-8k8-com-4__cta-section {
      background: linear-gradient(135deg, #2a0a4a, #0f0f22);
      color: #ffffff;
      padding: 60px 20px;
    }

    .page-8k8-com-4__cta-title {
      font-size: 2.8em;
      color: #ffd700;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-4__cta-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #e0e0e0;
    }

    .page-8k8-com-4__cta-button {
      display: inline-block;
      background-color: #ff4500;
      color: #ffffff;
      padding: 18px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.3em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-4__cta-button:hover {
      background-color: #e63900;
      transform: translateY(-3px);
    }

    .page-8k8-com-4__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: center;
      gap: 15px;
      padding: 10px 20px;
      background-color: rgba(0, 0, 0, 0.85);
      box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-8k8-com-4__floating-button {
      flex: 1;
      max-width: 180px;
      background-color: #ff4500;
      color: #ffffff;
      padding: 12px 0;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      text-align: center;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-sizing: border-box;
    }

    .page-8k8-com-4__floating-button--login {
      background-color: #ffd700;
      color: #1a1a2e;
    }

    .page-8k8-com-4__floating-button:hover {
      background-color: #e63900;
      transform: translateY(-2px);
    }

    .page-8k8-com-4__floating-button--login:hover {
      background-color: #e0c200;
      transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-4__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-com-4__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-com-4__title {
        font-size: 2.2em;
      }
      .page-8k8-com-4__cta-title {
        font-size: 2.4em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-4__section {
        padding: 30px 15px;
      }
      .page-8k8-com-4__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-com-4__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-com-4__hero-button,
      .page-8k8-com-4__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-8k8-com-4__title {
        font-size: 2em;
      }
      .page-8k8-com-4__text {
        font-size: 1em;
      }
      .page-8k8-com-4__features-grid,
      .page-8k8-com-4__providers-grid,
      .page-8k8-com-4__promotions-grid,
      .page-8k8-com-4__payments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-8k8-com-4__feature-item,
      .page-8k8-com-4__provider-item,
      .page-8k8-com-4__promotion-card,
      .page-8k8-com-4__payment-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
      }
      .page-8k8-com-4__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-com-4__faq-question h3 {
        font-size: 1.1em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-com-4__faq-answer {
        padding: 15px 20px !important;
        font-size: 0.95em;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-com-4__cta-title {
        font-size: 2em;
      }
      .page-8k8-com-4__cta-description {
        font-size: 1.1em;
      }
      .page-8k8-com-4__floating-buttons {
        gap: 10px;
        padding: 8px 10px;
      }
      .page-8k8-com-4__floating-button {
        font-size: 1em;
        padding: 10px 0;
      }
      .page-8k8-com-4__hero-image,
      .page-8k8-com-4__feature-icon,
      .page-8k8-com-4__provider-logo,
      .page-8k8-com-4__promotion-image,
      .page-8k8-com-4__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-4__hero-image-container,
      .page-8k8-com-4__promotion-image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-4__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-4__hero-subtitle {
        font-size: 0.9em;
      }
      .page-8k8-com-4__hero-button,
      .page-8k8-com-4__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-8k8-com-4__title {
        font-size: 1.8em;
      }
      .page-8k8-com-4__cta-title {
        font-size: 1.8em;
      }
      .page-8k8-com-4__cta-description {
        font-size: 1em;
      }
      .page-8k8-com-4__floating-buttons {
        gap: 8px;
        padding: 6px 8px;
      }
      .page-8k8-com-4__floating-button {
        font-size: 0.9em;
        padding: 8px 0;
      }
    }
  