
    /* Page-specific CSS for 8k8-com-ph */
    .page-8k8-com-ph {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-8k8-com-ph__hero-section {
      position: relative;
      background-color: #0d1a26; /* Dark blue for casino feel */
      color: #fff;
      text-align: center;
      padding: 10px 20px 80px; /* 10px top for nav bar spacing */
      overflow: hidden;
      box-sizing: border-box;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-8k8-com-ph__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Subtle background */
      z-index: 0;
    }

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

    .page-8k8-com-ph__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

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

    .page-8k8-com-ph__cta-button {
      display: inline-block;
      background-color: #007bff; /* Blue for action */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-com-ph__cta-button:hover {
      background-color: #0056b3;
    }

    .page-8k8-com-ph__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-bottom: 1px solid #eee;
      box-sizing: border-box;
    }

    .page-8k8-com-ph__section--dark {
      background-color: #1a2b3c;
      color: #e0e0e0;
    }

    .page-8k8-com-ph__section-title {
      font-size: 2.2em;
      color: #0d1a26;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-8k8-com-ph__section--dark .page-8k8-com-ph__section-title {
      color: #ffcc00;
    }

    .page-8k8-com-ph__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #ffcc00;
      margin: 10px auto 0;
      border-radius: 2px;
    }

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

    .page-8k8-com-ph__card {
      background-color: #f0f0f0;
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-com-ph__card--dark {
      background-color: #2a3b4c;
      color: #e0e0e0;
    }

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

    .page-8k8-com-ph__card-icon {
      width: 100%; /* Ensure responsiveness */
      max-width: 250px; /* Maintain minimum size for smaller images, but allow larger */
      height: 150px; /* Example aspect ratio, adjust as needed */
      object-fit: contain;
      margin: 0 auto 15px; /* Center image */
      border-radius: 5px;
      display: block; /* Ensure margin auto works */
    }

    .page-8k8-com-ph__card-title {
      font-size: 1.4em;
      color: #0d1a26;
      margin-bottom: 10px;
    }

    .page-8k8-com-ph__card--dark .page-8k8-com-ph__card-title {
      color: #ffcc00;
    }

    .page-8k8-com-ph__card-description {
      font-size: 0.95em;
      color: #555;
    }

    .page-8k8-com-ph__card--dark .page-8k8-com-ph__card-description {
      color: #ccc;
    }

    .page-8k8-com-ph__image-full-width {
      width: 100%;
      height: auto;
      max-width: 100%;
      object-fit: cover;
      border-radius: 8px;
      margin-top: 20px;
      box-sizing: border-box;
    }

    .page-8k8-com-ph__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      width: 100%; /* Ensure container takes full width */
      box-sizing: border-box;
    }

    .page-8k8-com-ph__list-item {
      background-color: #e9e9e9;
      padding: 10px 20px;
      border-radius: 20px;
      font-weight: bold;
      color: #0d1a26;
      box-sizing: border-box;
      flex-basis: auto; /* Allow items to size naturally */
      text-align: center;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
      min-width: 150px; /* Minimum width for list items */
    }

    .page-8k8-com-ph__section--dark .page-8k8-com-ph__list-item {
      background-color: #3a4b5c;
      color: #ffcc00;
    }

    /* FAQ Section */
    .page-8k8-com-ph__faq-container {
      margin-top: 40px;
      border-top: 1px solid #eee;
      padding-top: 20px;
    }

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

    .page-8k8-com-ph__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f5f5f5;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      color: #0d1a26;
      font-weight: bold;
    }

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

    .page-8k8-com-ph__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-com-ph__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-8k8-com-ph__faq-item.active .page-8k8-com-ph__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus visual effect */
    }

    .page-8k8-com-ph__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* 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: 0.95em;
    }

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

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

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

      .page-8k8-com-ph__section {
        padding: 40px 15px;
      }

      .page-8k8-com-ph__section-title {
        font-size: 1.8em;
      }

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

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

      /* List item responsive */
      .page-8k8-com-ph__list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Adjust padding for container */
        margin-left: 0 !important;
        margin-right: 0 !important;
        justify-content: flex-start; /* Align items to start for better flow */
      }

      .page-8k8-com-ph__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 8px 15px !important; /* Reduce padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        min-width: unset; /* Remove min-width on mobile */
      }

      /* Images responsive */
      .page-8k8-com-ph__image-full-width {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-com-ph__card-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-ph__faq-question {
        padding: 12px 15px;
      }

      .page-8k8-com-ph__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-com-ph__faq-answer {
        padding: 15px 15px !important; /* Adjust expanded padding */
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-ph__hero-section {
        padding-bottom: 60px;
        min-height: 300px;
      }
      .page-8k8-com-ph__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-ph__hero-subtitle {
        font-size: 0.9em;
      }
      .page-8k8-com-ph__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  