
    /* 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: #f8f8f8;
      padding-bottom: 40px;
    }

    .page-8k8-com-login-password__hero-section {
      position: relative;
      padding: 80px 20px 60px; /* Adjusted padding to account for body padding-top */
      color: #fff;
      text-align: center;
      overflow: hidden;
      background-color: #0d1a26; /* Dark background for contrast */
      padding-top: 10px; /* Decorative top distance */
    }

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

    .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: #f0b90b; /* Accent color */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

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

    .page-8k8-com-login-password__button {
      display: inline-block;
      background-color: #f0b90b; /* Accent color */
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-8k8-com-login-password__button:hover {
      background-color: #e6a800;
      transform: translateY(-2px);
    }

    .page-8k8-com-login-password__section {
      padding: 40px 20px;
      max-width: 1000px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-top: 20px;
    }

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

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

    .page-8k8-com-login-password__content-block {
      margin-bottom: 30px;
    }

    .page-8k8-com-login-password__content-block h3 {
      font-size: 1.5em;
      color: #0d1a26;
      margin-bottom: 15px;
      border-left: 4px solid #f0b90b;
      padding-left: 10px;
    }

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

    .page-8k8-com-login-password__list-item {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 20px;
      flex: 1 1 calc(33% - 20px); /* Three items per row */
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
      text-align: center;
      box-sizing: border-box; /* Crucial for responsive lists */
      min-width: 280px; /* Ensure items don't get too small on desktop */
    }

    .page-8k8-com-login-password__list-item strong {
      color: #f0b90b;
      font-size: 1.2em;
      display: block;
      margin-bottom: 10px;
    }

    .page-8k8-com-login-password__image-container {
      text-align: center;
      margin: 30px 0;
    }

    .page-8k8-com-login-password__image {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    /* FAQ Section Styles */
    .page-8k8-com-login-password__faq-section {
      padding: 40px 20px;
      max-width: 1000px;
      margin: 20px auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-login-password__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-8k8-com-login-password__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

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

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

    .page-8k8-com-login-password__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #0d1a26;
      flex-grow: 1;
      padding-right: 10px;
      pointer-events: none; /* Prevent click interference */
    }

    .page-8k8-com-login-password__faq-toggle {
      font-size: 1.5em;
      color: #f0b90b;
      font-weight: bold;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent click interference */
    }

    .page-8k8-com-login-password__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding, ensures smooth transition */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    .page-8k8-com-login-password__faq-answer p {
      margin-top: 0;
      margin-bottom: 15px;
      color: #555;
    }

    .page-8k8-com-login-password__final-cta {
      text-align: center;
      padding-top: 30px;
      padding-bottom: 50px;
    }

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

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

      .page-8k8-com-login-password__section {
        padding: 20px 15px;
        margin-top: 15px;
      }

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

      .page-8k8-com-login-password__content-block h3 {
        font-size: 1.3em;
      }

      .page-8k8-com-login-password__list {
        flex-direction: column;
        gap: 15px;
        padding: 0; /* Ensure no extra padding on list container */
        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 {
        flex: 1 1 100%; /* Full width for list items */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-com-login-password__list-item strong {
        font-size: 1.1em;
      }

      .page-8k8-com-login-password__image {
        width: 100%;
        max-width: 100% !important;
        height: auto;
      }
      .page-8k8-com-login-password__image-container {
        width: 100%;
        max-width: 100% !important;
        overflow: hidden;
        box-sizing: border-box;
        padding: 0 15px; /* Adjust padding for container to avoid content being too wide */
      }

      /* FAQ Mobile Adjustments */
      .page-8k8-com-login-password__faq-section {
        padding: 20px 15px;
        margin-top: 15px;
      }

      .page-8k8-com-login-password__faq-question {
        padding: 12px 0;
      }

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

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

      .page-8k8-com-login-password__faq-answer {
        padding: 0 10px; /* Smaller padding for mobile */
      }

      .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-answer {
        padding: 15px 10px !important; /* Smaller padding when open */
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-login-password__hero-section {
        padding-top: 5px;
        padding-bottom: 40px;
      }
      .page-8k8-com-login-password__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login-password__button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  