
    .page-8k8-com-2 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-8k8-com-2__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-8k8-com-2__hero-section {
      position: relative;
      background: linear-gradient(135deg, #001f3f, #007bff);
      color: #fff;
      text-align: center;
      padding: 10px 0 60px 0; /* Adjusted padding-top as per fixed nav bar requirement */
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 40px;
    }

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

    .page-8k8-com-2__hero-content {
      position: relative;
      z-index: 1;
      padding: 80px 20px;
    }

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

    .page-8k8-com-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-2__cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #000;
      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-2__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    .page-8k8-com-2__section {
      background-color: #fff;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .page-8k8-com-2__section-title {
      font-size: 2.5em;
      color: #001f3f;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 15px;
    }

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

    .page-8k8-com-2__text-content {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: justify;
    }

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

    .page-8k8-com-2__grid-item {
      background-color: #f9f9f9;
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-8k8-com-2__grid-item:hover {
      transform: translateY(-5px);
    }

    .page-8k8-com-2__grid-item-image {
      width: 100%;
      max-width: 300px;
      height: auto;
      border-radius: 8px;
      margin-bottom: 15px;
      object-fit: cover;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
      overflow: hidden;
    }

    .page-8k8-com-2__grid-item-title {
      font-size: 1.5em;
      color: #001f3f;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-com-2__grid-item-description {
      font-size: 0.95em;
      color: #555;
      flex-grow: 1;
    }

    .page-8k8-com-2__promo-link {
      display: block;
      margin-top: 15px;
      color: #007bff;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-8k8-com-2__promo-link:hover {
      color: #0056b3;
    }

    .page-8k8-com-2__faq-item {
      border: 1px solid #eee;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-8k8-com-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background-color: #f0f0f0;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      color: #001f3f;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-com-2__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-com-2__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffc107;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-8k8-com-2__faq-item.active .page-8k8-com-2__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - visual */
    }

    .page-8k8-com-2__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;
      background-color: #fff;
      color: #555;
      font-size: 1em;
      text-align: justify;
    }

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

    .page-8k8-com-2__payment-methods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-com-2__payment-method-item {
      background-color: #f0f0f0;
      border-radius: 5px;
      padding: 15px 25px;
      font-weight: bold;
      color: #001f3f;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-2__payment-method-item:hover {
      background-color: #e0e0e0;
    }

    .page-8k8-com-2__game-providers {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-8k8-com-2__provider-item {
      background-color: #f0f0f0;
      border-radius: 5px;
      padding: 15px 25px;
      font-weight: bold;
      color: #001f3f;
      text-align: center;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-2__provider-item:hover {
      background-color: #e0e0e0;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-com-2__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-com-2__hero-subtitle {
        font-size: 1.2em;
      }

      .page-8k8-com-2__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-com-2__section-title {
        font-size: 2em;
      }

      .page-8k8-com-2__section {
        padding: 20px;
      }

      .page-8k8-com-2__grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-com-2__grid-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

      .page-8k8-com-2__grid-item-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com-2__faq-question {
        font-size: 1em;
        padding: 15px;
      }

      .page-8k8-com-2__faq-answer {
        padding: 15px 15px !important;
        font-size: 0.9em;
      }

      .page-8k8-com-2__payment-methods,
      .page-8k8-com-2__game-providers {
        gap: 10px;
      }

      .page-8k8-com-2__payment-method-item,
      .page-8k8-com-2__provider-item {
        padding: 10px 15px;
        font-size: 0.9em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-2__hero-title {
        font-size: 2em;
      }

      .page-8k8-com-2__hero-subtitle {
        font-size: 1em;
      }

      .page-8k8-com-2__hero-content {
        padding: 60px 15px;
      }
    }

    /* Ensure all images are responsive */
    .page-8k8-com-2 img {
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
      overflow: hidden;
    }

    @media (max-width: 768px) {
      .page-8k8-com-2 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }
  