
    /* 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-top: 10px; /* Minimal top padding, body handles main offset */
    }

    .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 {
      background: linear-gradient(135deg, #0056b3, #007bff);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      border-radius: 8px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-com-login-password__hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: rgba(255, 255, 255, 0.1);
      transform: rotate(45deg);
      z-index: 0;
    }

    .page-8k8-com-login-password__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-8k8-com-login-password__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
      color: #fff; /* Ensure high contrast */
    }

    .page-8k8-com-login-password__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #e0e0e0; /* Ensure high contrast */
    }

    .page-8k8-com-login-password__promo-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 5px;
      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-login-password__promo-button:hover {
      background-color: #e0a800;
      transform: translateY(-2px);
    }

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

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

    .page-8k8-com-login-password__content-text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #555;
    }

    .page-8k8-com-login-password__image-wrapper {
      text-align: center;
      margin: 30px 0;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-8k8-com-login-password__image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-8k8-com-login-password__steps-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-8k8-com-login-password__step-item {
      background-color: #e6f2ff;
      border-left: 5px solid #007bff;
      padding: 20px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease;
      box-sizing: border-box; /* Required for list items */
    }

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

    .page-8k8-com-login-password__step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-8k8-com-login-password__step-title {
      font-size: 1.3em;
      color: #333;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-8k8-com-login-password__security-tips-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-8k8-com-login-password__tip-item {
      background-color: #f0fdf4;
      border-left: 5px solid #28a745;
      padding: 20px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-com-login-password__tip-item strong {
      color: #1a7e32;
    }

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

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

    .page-8k8-com-login-password__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      box-sizing: border-box; /* Required for list items */
    }

    .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;
      font-size: 1.2em;
      font-weight: 600;
      color: #0056b3;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-login-password__faq-question:hover {
      background-color: #f0f7ff;
      border-radius: 4px;
      padding-left: 10px;
      padding-right: 10px;
    }

    .page-8k8-com-login-password__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
      color: #0056b3; /* Ensure contrast */
    }

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

    .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-toggle {
      transform: rotate(45deg); /* Changes + to x or similar visually */
    }

    .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.3s ease;
      color: #555;
      font-size: 1em;
    }

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

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

      .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__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

      .page-8k8-com-login-password__content-text {
        font-size: 1em;
      }

      .page-8k8-com-login-password__steps-list,
      .page-8k8-com-login-password__security-tips-list {
        grid-template-columns: 1fr;
      }

      .page-8k8-com-login-password__step-item,
      .page-8k8-com-login-password__tip-item,
      .page-8k8-com-login-password__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        padding-left: 15px; /* Adjust padding for mobile */
        padding-right: 15px; /* Adjust padding for mobile */
      }

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

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

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

      .page-8k8-com-login-password__image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }

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