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

    .page-8k8-com-login-password__hero-section {
      position: relative;
      padding: 10px 20px 60px; /* Adjusted padding-top as per instruction */
      background-color: #004085; /* Dark blue, matching casino theme */
      color: #fff;
      text-align: center;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

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

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

    .page-8k8-com-login-password__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold accent */
      word-wrap: break-word; /* Ensure long titles wrap */
      overflow-wrap: break-word; /* Ensure long titles wrap */
      word-break: break-word; /* For long keywords */
    }

    .page-8k8-com-login-password__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-login-password__button {
      display: inline-block;
      background-color: #ffcc00; /* Gold */
      color: #004085; /* Dark blue */
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-8k8-com-login-password__button:hover {
      background-color: #e6b800; /* Darker gold */
    }

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

    .page-8k8-com-login-password__section:last-of-type {
      border-bottom: none;
    }

    .page-8k8-com-login-password__section-title {
      font-size: 2em;
      color: #004085;
      margin-bottom: 25px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-com-login-password__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 60px;
      height: 3px;
      background-color: #ffcc00;
    }

    .page-8k8-com-login-password__content-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: flex-start;
      margin-top: 30px;
    }

    .page-8k8-com-login-password__text-content {
      flex: 2;
      min-width: 300px;
    }

    .page-8k8-com-login-password__image-container {
      flex: 1;
      min-width: 250px;
      max-width: 400px;
      width: 100%; /* Important for mobile responsiveness */
      overflow: hidden;
      box-sizing: border-box;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-com-login-password__image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    .page-8k8-com-login-password__paragraph {
      margin-bottom: 15px;
      color: #555;
    }

    .page-8k8-com-login-password__list {
      list-style: disc;
      padding-left: 25px;
      margin-bottom: 20px;
    }

    .page-8k8-com-login-password__list-item {
      margin-bottom: 10px;
      color: #555;
      box-sizing: border-box; /* Required for list items */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word; /* Ensure text wraps */
      word-break: break-word; /* For long keywords */
    }

    .page-8k8-com-login-password__faq-section {
      background-color: #f0f8ff; /* Light blue background for FAQ */
    }

    .page-8k8-com-login-password__faq-item {
      margin-bottom: 10px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      background-color: #fff;
    }

    .page-8k8-com-login-password__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #004085;
      color: #fff;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-login-password__faq-question:hover {
      background-color: #0056b3;
    }

    .page-8k8-com-login-password__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from intercepting click */
      color: #ffcc00; /* Gold for question text */
      font-size: 1.1em; /* Ensure consistent font size */
    }

    .page-8k8-com-login-password__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from intercepting click */
      transition: transform 0.3s ease;
      color: #ffcc00;
    }

    .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-toggle {
      transform: rotate(45deg); /* Plus to X/minus for better visual */
    }

    .page-8k8-com-login-password__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: #333;
      background-color: #e6f7ff; /* Lighter blue for answer background */
      border-top: 1px solid #cceeff;
    }

    .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-answer {
      max-height: 2000px !important; /* Sufficient height for content */
      padding: 20px 15px !important;
      opacity: 1;
    }

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

      .page-8k8-com-login-password__hero-description {
        font-size: 1em;
      }

      .page-8k8-com-login-password__section {
        padding: 30px 15px;
      }

      .page-8k8-com-login-password__section-title {
        font-size: 1.6em;
      }

      .page-8k8-com-login-password__content-wrapper {
        flex-direction: column;
        gap: 20px;
      }

      .page-8k8-com-login-password__image-container {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important; /* Ensure height adjusts */
        box-sizing: border-box !important; /* Ensure padding/border included */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-com-login-password__image {
        max-width: 100% !important;
        height: auto !important;
      }

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

      .page-8k8-com-login-password__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important; /* Adjust if needed to prevent excessive padding */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com-login-password__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

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

      .page-8k8-com-login-password__faq-toggle {
        font-size: 1.3em;
      }

      .page-8k8-com-login-password__faq-answer {
        padding: 15px 15px !important; /* Adjust padding for mobile */
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-login-password__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login-password__section-title {
        font-size: 1.4em;
      }
    }
  