
    .page-8k8-com-login-password {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-top: 10px; /* Minimal padding-top as body padding-top is handled by shared.css */
    }

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

    .page-8k8-com-login-password__hero-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #004d40; /* Dark green for a premium feel */
      color: #fff;
      border-radius: 8px;
      margin-bottom: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }

    .page-8k8-com-login-password__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #ffeb3b; /* Yellow for highlight */
    }

    .page-8k8-com-login-password__hero-subtitle {
      font-size: 1.3em;
      max-width: 800px;
      margin-bottom: 30px;
    }

    .page-8k8-com-login-password__button {
      display: inline-block;
      background-color: #ffeb3b; /* Yellow */
      color: #004d40; /* Dark green */
      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__button:hover {
      background-color: #ffe000;
      transform: translateY(-2px);
    }

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

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

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

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

    .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: #e0f2f1; /* Light teal */
      padding: 20px;
      border-radius: 8px;
      flex: 1 1 calc(33% - 40px); /* 3 items per row */
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      min-width: 280px;
      box-sizing: border-box;
    }

    .page-8k8-com-login-password__list-item h3 {
      color: #004d40;
      margin-top: 0;
      margin-bottom: 15px;
      font-size: 1.3em;
    }

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

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

    .page-8k8-com-login-password__steps-list {
      counter-reset: step-counter;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-com-login-password__steps-list-item {
      background-color: #f9f9f9;
      border-left: 5px solid #004d40;
      padding: 20px;
      margin-bottom: 15px;
      border-radius: 4px;
      position: relative;
      box-sizing: border-box;
    }

    .page-8k8-com-login-password__steps-list-item::before {
      content: counter(step-counter);
      counter-increment: step-counter;
      position: absolute;
      left: -15px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #004d40;
      color: #fff;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.1em;
    }

    .page-8k8-com-login-password__steps-list-item h3 {
      margin-top: 0;
      margin-bottom: 10px;
      color: #004d40;
      padding-left: 25px; /* Adjust for the number circle */
    }

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

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

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

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

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

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

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

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

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

    .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !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-subtitle {
        font-size: 1em;
      }

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

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

      .page-8k8-com-login-password__list-item {
        flex: 1 1 100%; /* Stack items on small screens */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-com-login-password__list {
        flex-direction: column;
        gap: 15px;
        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__image-wrapper {
        margin: 20px 0;
      }

      .page-8k8-com-login-password__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      
      .page-8k8-com-login-password__faq-question,
      .page-8k8-com-login-password__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }
      
      .page-8k8-com-login-password__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-com-login-password__steps-list-item {
        padding: 15px;
      }

      .page-8k8-com-login-password__steps-list-item h3 {
        padding-left: 20px;
      }
    }

    @media (max-width: 480px) {
      .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__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-com-login-password__section {
        padding: 20px;
      }
      .page-8k8-com-login-password__steps-list-item::before {
        left: -10px;
      }
    }
  