
    /* Base styles for the page */
    .page-8k8-com-login-password {
      font-family: 'Arial', sans-serif;
      color: #333333;
      line-height: 1.6;
      background-color: #f5f7fa;
      padding-top: 10px; /* Small top padding, assuming body handles header offset */
    }

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

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

    .page-8k8-com-login-password__hero-section {
      background-color: #004a8f; /* Dark blue for hero */
      color: #ffffff;
      padding: 60px 20px;
      text-align: center;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
    }

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

    .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: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-8k8-com-login-password__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffffff;
      font-weight: bold;
    }

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

    .page-8k8-com-login-password__section-title {
      font-size: 2em;
      color: #004a8f;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-8k8-com-login-password__sub-section-title {
      font-size: 1.5em;
      color: #0056b3;
      margin-top: 30px;
      margin-bottom: 15px;
      font-weight: bold;
    }

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

    .page-8k8-com-login-password__step-item {
      background-color: #f8f9fa;
      border: 1px solid #e9ecef;
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      flex: 1 1 calc(33% - 25px); /* 3 items per row */
      min-width: 280px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
      box-sizing: border-box;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-com-login-password__step-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

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

    .page-8k8-com-login-password__step-title {
      font-size: 1.2em;
      color: #004a8f;
      margin-bottom: 10px;
      font-weight: bold;
    }

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

    .page-8k8-com-login-password__tip-card {
      background-color: #f8f9fa;
      border: 1px solid #e9ecef;
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
      text-align: left;
      box-sizing: border-box;
    }

    .page-8k8-com-login-password__tip-icon {
      width: 60px; /* Min size 200x200, so this is a placeholder for styling */
      height: 60px;
      margin-bottom: 15px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-8k8-com-login-password__tip-title {
      font-size: 1.3em;
      color: #004a8f;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-com-login-password__cta-section {
      text-align: center;
      padding: 50px 20px;
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #ffffff;
      border-radius: 8px;
      margin-bottom: 30px;
    }

    .page-8k8-com-login-password__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      font-weight: bold;
    }

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

    .page-8k8-com-login-password__cta-button {
      display: inline-block;
      background-color: #ffc107; /* Yellow accent */
      color: #333333;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

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

    /* FAQ Section */
    .page-8k8-com-login-password__faq-section {
      margin-top: 40px;
    }

    .page-8k8-com-login-password__faq-item {
      background-color: #f8f9fa;
      border: 1px solid #e9ecef;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

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

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

    .page-8k8-com-login-password__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #004a8f;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-8k8-com-login-password__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

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

    .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;
      opacity: 1;
    }

    .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
    }

    /* General text and link styling */
    .page-8k8-com-login-password p {
      margin-bottom: 15px;
    }

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

    .page-8k8-com-login-password ol {
      list-style: decimal;
      padding-left: 20px;
      margin-bottom: 15px;
    }

    .page-8k8-com-login-password li {
      margin-bottom: 8px;
    }

    .page-8k8-com-login-password a {
      color: #007bff;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-8k8-com-login-password a:hover {
      color: #0056b3;
      text-decoration: underline;
    }

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

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

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

      .page-8k8-com-login-password__step-item {
        flex: 1 1 calc(50% - 25px); /* 2 items per row */
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-login-password__section {
        padding: 30px 15px;
      }

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

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

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

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

      .page-8k8-com-login-password__step-list {
        gap: 15px;
      }

      .page-8k8-com-login-password__step-item {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100%; /* 1 item per row */
        padding: 20px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-com-login-password__tip-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

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

      .page-8k8-com-login-password__cta-description {
        font-size: 0.95em;
      }

      .page-8k8-com-login-password__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-com-login-password__faq-question {
        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;
      }

      /* Image responsive adjustments */
      .page-8k8-com-login-password img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-login-password__tip-icon {
        width: 50px;
        height: 50px;
      }

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