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

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

    /* Hero Section */
    .page-8k8-com-login-password__hero-section {
      position: relative;
      background-color: #0056b3; /* Primary brand color */
      color: #fff;
      text-align: center;
      padding: 80px 20px;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 40px;
    }

    .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: 1;
      max-width: 100%;
    }

    .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: 3.2em;
      margin-bottom: 20px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

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

    /* Section Styling */
    .page-8k8-com-login-password__section {
      background-color: #fff;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      margin-bottom: 40px;
    }

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

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

    /* Guide Steps */
    .page-8k8-com-login-password__guide-steps {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: center;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-com-login-password__step-item {
      background-color: #e0f7fa;
      padding: 25px;
      border-radius: 8px;
      flex: 1 1 calc(33% - 25px);
      min-width: 280px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
      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.4em;
      color: #0056b3;
      margin-bottom: 15px;
    }

    .page-8k8-com-login-password__step-description {
      font-size: 1em;
      color: #444;
    }

    /* Image Container */
    .page-8k8-com-login-password__image-container {
      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.1);
    }

    /* Security Features */
    .page-8k8-com-login-password__feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-8k8-com-login-password__feature-item {
      background-color: #f0f8ff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-login-password__feature-item:hover {
      background-color: #e6f7ff;
    }

    .page-8k8-com-login-password__feature-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
    }

    .page-8k8-com-login-password__feature-description {
      font-size: 1em;
      color: #555;
    }

    /* Call to Action */
    .page-8k8-com-login-password__cta-section {
      background-color: #007bff;
      color: #fff;
      text-align: center;
      padding: 60px 20px;
      border-radius: 10px;
      margin-bottom: 40px;
    }

    .page-8k8-com-login-password__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #fff;
    }

    .page-8k8-com-login-password__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: #e0f0ff;
    }

    .page-8k8-com-login-password__cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      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 {
      background-color: #fff;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      margin-bottom: 40px;
    }

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

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

    .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;
      background-color: #f5f5f5;
      border-radius: 5px;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

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

    .page-8k8-com-login-password__faq-toggle {
      font-size: 1.5em;
      color: #0056b3;
      font-weight: bold;
      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 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s 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;
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-8k8-com-login-password__faq-item.active .page-8k8-com-login-password__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar, could also be '−' */
      content: '−'; /* This will be handled by JS */
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-login-password__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-com-login-password__hero-description {
        font-size: 1.1em;
      }
      .page-8k8-com-login-password__section-title {
        font-size: 2em;
      }
      .page-8k8-com-login-password__guide-steps {
        gap: 20px;
      }
      .page-8k8-com-login-password__step-item {
        flex: 1 1 calc(50% - 20px);
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-login-password__container {
        padding: 15px;
      }
      .page-8k8-com-login-password__hero-section {
        padding: 60px 15px;
      }
      .page-8k8-com-login-password__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-com-login-password__hero-description {
        font-size: 1em;
      }
      .page-8k8-com-login-password__section {
        padding: 30px 20px;
      }
      .page-8k8-com-login-password__section-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login-password__section-text {
        font-size: 0.95em;
      }

      /* List item mobile responsiveness */
      .page-8k8-com-login-password__guide-steps,
      .page-8k8-com-login-password__feature-list,
      .page-8k8-com-login-password__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        flex-direction: column; /* Ensure vertical stacking */
      }
      .page-8k8-com-login-password__step-item,
      .page-8k8-com-login-password__feature-item,
      .page-8k8-com-login-password__faq-item {
        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__cta-section {
        padding: 40px 15px;
      }
      .page-8k8-com-login-password__cta-title {
        font-size: 2em;
      }
      .page-8k8-com-login-password__cta-description {
        font-size: 1em;
      }
      .page-8k8-com-login-password__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-com-login-password__faq-question {
        padding: 12px;
      }
      .page-8k8-com-login-password__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-com-login-password__faq-answer {
        padding: 15px 12px !important; /* Adjusted for mobile */
      }
      /* Image mobile responsiveness */
      .page-8k8-com-login-password__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-login-password__content-image {
        max-width: 100% !important;
        height: auto !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;
      }
      .page-8k8-com-login-password__step-item {
        min-width: unset; /* Allow items to shrink further */
      }
    }
  