
    /* CSS styles for page-8k8-com-4 */
    .page-8k8-com-4 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 50px; /* Space for footer */
    }

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

    .page-8k8-com-4__hero-section {
      position: relative;
      background: linear-gradient(135deg, #0f0c29, #302b63, #24243e); /* Dark gradient for betting theme */
      color: #fff;
      padding: 10px 0 80px 0; /* 10px top padding for header offset, 80px bottom */
      text-align: center;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
    }

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

    .page-8k8-com-4__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      line-height: 1.2;
      font-weight: 700;
      color: #ffd700; /* Gold color for highlights */
    }

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

    .page-8k8-com-4__button {
      display: inline-block;
      background-color: #007bff; /* Primary blue for buttons */
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-4__button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-8k8-com-4__image-full {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      margin: 20px 0;
      object-fit: cover;
    }

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

    .page-8k8-com-4__section--dark {
      background-color: #24243e;
      color: #fff;
    }

    .page-8k8-com-4__section-title {
      font-size: 2.5em;
      color: #333;
      text-align: center;
      margin-bottom: 40px;
      font-weight: 700;
    }

    .page-8k8-com-4__section--dark .page-8k8-com-4__section-title {
      color: #ffd700;
    }

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

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

    .page-8k8-com-4__card {
      background-color: #f0f0f0;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      min-height: 280px; /* Ensure cards have a minimum height */
    }

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

    .page-8k8-com-4__card-image {
      width: 250px; /* Min size 200x200 */
      height: 180px;
      object-fit: contain;
      margin-bottom: 15px;
      border-radius: 5px;
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-8k8-com-4__card-title {
      font-size: 1.4em;
      font-weight: 600;
      color: #333;
      margin-bottom: 10px;
    }

    .page-8k8-com-4__card-description {
      font-size: 0.95em;
      color: #666;
      flex-grow: 1; /* Allow description to take available space */
    }

    .page-8k8-com-4__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-top: 30px;
    }

    .page-8k8-com-4__list-item {
      background-color: #e8f0fe; /* Light blue for list items */
      padding: 12px 20px;
      border-radius: 25px;
      font-weight: 500;
      color: #0056b3;
      box-sizing: border-box; /* Required for list items */
      flex-grow: 1;
      text-align: center;
      min-width: 150px;
      max-width: 280px; /* Limit max width for better display on larger screens */
    }

    .page-8k8-com-4__promo-list {
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
        justify-content: center;
        margin-top: 40px;
    }

    .page-8k8-com-4__promo-item {
        background-color: #fff;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        overflow: hidden;
        text-align: left;
        flex: 1 1 calc(33% - 25px); /* Three items per row, with gap */
        max-width: calc(33% - 25px);
        box-sizing: border-box;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-com-4__promo-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .page-8k8-com-4__promo-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
    }

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

    .page-8k8-com-4__promo-title {
        font-size: 1.5em;
        font-weight: 700;
        color: #333;
        margin-bottom: 10px;
    }

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

    /* FAQ Section Styles */
    .page-8k8-com-4__faq-section {
      padding: 60px 0;
      background-color: #f0f4f8; /* Light background for FAQ */
      margin-top: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    .page-8k8-com-4__faq-title {
      font-size: 2.5em;
      color: #333;
      text-align: center;
      margin-bottom: 40px;
      font-weight: 700;
    }

    .page-8k8-com-4__faq-list {
      max-width: 900px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

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

    .page-8k8-com-4__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      font-size: 1.2em;
      font-weight: 600;
      color: #333;
      cursor: pointer;
      user-select: none;
      background-color: #eef3f7;
      border-bottom: 1px solid #e0e0e0;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-com-4__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-8k8-com-4__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent div */
    }

    .page-8k8-com-4__faq-item.active .page-8k8-com-4__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or use '-' directly */
    }

    .page-8k8-com-4__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      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: 1em;
      line-height: 1.7;
    }

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

    .page-8k8-com-4__cta-section {
        background-color: #007bff;
        color: #fff;
        text-align: center;
        padding: 60px 0;
        margin-top: 40px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .page-8k8-com-4__cta-title {
        font-size: 2.5em;
        margin-bottom: 20px;
        font-weight: 700;
    }

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

    .page-8k8-com-4__cta-button {
        background-color: #ffd700;
        color: #333;
        padding: 18px 40px;
        font-size: 1.2em;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

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

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-8k8-com-4__hero-section {
        min-height: 400px;
        padding: 10px 0 50px 0;
      }

      .page-8k8-com-4__hero-title {
        font-size: 2.2em;
      }

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

      .page-8k8-com-4__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-com-4__section-title,
      .page-8k8-com-4__faq-title,
      .page-8k8-com-4__cta-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

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

      .page-8k8-com-4__card {
        padding: 20px;
        min-height: auto;
      }

      .page-8k8-com-4__card-image {
        width: 200px; /* Adjust for mobile, but keep above 200px */
        height: 150px;
      }

      .page-8k8-com-4__list {
        flex-direction: column;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-4__list-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 10px 15px !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-com-4__promo-item {
          flex: 1 1 100%; /* Single item per row on mobile */
          max-width: 100%;
      }

      .page-8k8-com-4__promo-image {
          height: 200px;
      }

      .page-8k8-com-4__promo-content {
          padding: 20px;
      }

      .page-8k8-com-4__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

      .page-8k8-com-4__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-com-4__faq-toggle {
        font-size: 1.5em;
      }

      .page-8k8-com-4__faq-answer {
        padding: 0 20px;
      }

      .page-8k8-com-4__faq-item.active .page-8k8-com-4__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-com-4__cta-description {
        font-size: 1em;
      }

      .page-8k8-com-4__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
      }

      .page-8k8-com-4__image-full {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  