
    /* Page-specific CSS for 8k8-com-login-password */
    .page-8k8-com-login-password {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0; /* Light text for dark background */
      background-color: #1a1a1a; /* Dark background */
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback if body padding not set by shared.css */
    }

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

    .page-8k8-com-login-password__hero-section {
      text-align: center;
      padding: 60px 20px 40px;
      background-color: #222222;
      border-radius: 8px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
      padding-top: 10px; /* Decorative top spacing, not for header offset */
    }

    .page-8k8-com-login-password__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
      z-index: 1;
    }

    .page-8k8-com-login-password__hero-image {
      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: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-com-login-password__hero-title {
      font-size: 2.8em;
      color: #FFD700; /* Gold accent */
      margin-bottom: 20px;
      line-height: 1.2;
    }

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

    .page-8k8-com-login-password__cta-button {
      display: inline-block;
      background-color: #007bff; /* Blue accent */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      border: none; /* Ensure it's a button or div, not an anchor with link */
      cursor: pointer;
    }

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

    .page-8k8-com-login-password__section {
      background-color: #222222;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

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

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

    .page-8k8-com-login-password__content-block h3 {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 15px;
    }

    .page-8k8-com-login-password__content-block p {
      margin-bottom: 10px;
      color: #cccccc;
    }

    .page-8k8-com-login-password__list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-com-login-password__list-item {
      background-color: #2a2a2a;
      padding: 15px 20px;
      margin-bottom: 10px;
      border-radius: 5px;
      display: flex;
      align-items: flex-start;
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-8k8-com-login-password__list-item::before {
      content: '✓';
      color: #28a745; /* Green checkmark */
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
      line-height: 1.6;
    }

    .page-8k8-com-login-password__image-wrapper {
      text-align: center;
      margin: 30px 0;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-com-login-password__content-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
      width: 100%; /* Ensure it takes full width of its container */
      object-fit: cover;
    }

    .page-8k8-com-login-password__promo-card {
      background-color: #333333;
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      margin-top: 40px;
    }

    .page-8k8-com-login-password__promo-title {
      font-size: 1.8em;
      color: #FFD700;
      margin-bottom: 15px;
    }

    .page-8k8-com-login-password__promo-text {
      font-size: 1.1em;
      color: #cccccc;
      margin-bottom: 25px;
    }

    .page-8k8-com-login-password__external-link {
      display: inline-block;
      background-color: #28a745; /* Green for external link */
      color: #ffffff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-login-password__external-link:hover {
      background-color: #218838;
    }

    /* FAQ Section */
    .page-8k8-com-login-password__faq-section {
      background-color: #222222;
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-login-password__faq-title {
      font-size: 2em;
      color: #FFD700;
      margin-bottom: 30px;
      text-align: center;
    }

    .page-8k8-com-login-password__faq-item {
      background-color: #2a2a2a;
      margin-bottom: 15px;
      border-radius: 5px;
      overflow: hidden;
      border: 1px solid #3a3a3a;
    }

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

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

    .page-8k8-com-login-password__faq-question h3 {
      margin: 0;
      font-size: 1.2em; /* Ensure h3 inside is not too large */
      color: inherit; /* Inherit color from parent */
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-8k8-com-login-password__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
      transition: transform 0.3s ease;
    }

    .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or just change to '-' */
    }

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

    .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 25px !important; /* Final padding */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-com-login-password__container {
        padding: 15px;
      }

      .page-8k8-com-login-password__hero-section {
        padding: 40px 15px 30px;
      }

      .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__cta-button,
      .page-8k8-com-login-password__external-link {
        padding: 12px 25px;
        font-size: 1em;
      }

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

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

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

      .page-8k8-com-login-password__list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !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: 12px 15px; /* Adjusted padding for mobile */
        word-wrap: break-word !important; /* Ensure text wraps */
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com-login-password__content-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-login-password__promo-card {
        padding: 25px 20px;
      }

      .page-8k8-com-login-password__promo-title {
        font-size: 1.5em;
      }

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

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

      .page-8k8-com-login-password__faq-answer {
        padding: 0 20px;
      }

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

    @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.6em;
      }
    }
  