
    /* Global styles for the page, scope to .page-8k8-com-login-password */
    .page-8k8-com-login-password {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px; /* General padding for the bottom of the main content */
    }

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

    /* Hero Section */
    .page-8k8-com-login-password__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Gradient from site description colors */
      color: #ffffff;
      padding: 60px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 40px;
      padding-top: calc(10px + var(--header-offset, 0px)); /* Small top padding, plus header offset if body doesn't handle it */
    }

    .page-8k8-com-login-password__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.2;
      z-index: 0;
    }

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

    .page-8k8-com-login-password__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #ffffff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

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

    .page-8k8-com-login-password__promo-button {
      display: inline-block;
      background-color: #fdbb2d;
      color: #1a2a6c;
      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__promo-button:hover {
      background-color: #e0a322;
      transform: translateY(-3px);
    }

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

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

    .page-8k8-com-login-password__section-description {
      font-size: 1.1em;
      color: #555;
      text-align: center;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8-com-login-password__step-item {
      background-color: #f0f8ff;
      border-left: 5px solid #1a2a6c;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .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: #fdbb2d;
      margin-bottom: 10px;
    }

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

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

    /* Image Container */
    .page-8k8-com-login-password__image-container {
      text-align: center;
      margin-top: 30px;
      margin-bottom: 30px;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

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

    /* Security Tips */
    .page-8k8-com-login-password__tips-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
    }

    .page-8k8-com-login-password__tip-card {
      background-color: #fff;
      border: 1px solid #eee;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: box-shadow 0.3s ease;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
    }

    .page-8k8-com-login-password__tip-card:hover {
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-com-login-password__tip-icon {
      margin-bottom: 15px;
      max-width: 100%; /* Ensure icon placeholder is responsive */
      height: auto;
      border-radius: 4px;
    }

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

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

    /* Call to Action */
    .page-8k8-com-login-password__cta-section {
      text-align: center;
      background: #1a2a6c;
      color: #ffffff;
      padding: 50px 20px;
      border-radius: 8px;
      margin-top: 40px;
    }

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

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

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

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

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

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

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

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

    .page-8k8-com-login-password__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: #fdbb2d;
      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);
    }

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

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

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-login-password__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-com-login-password__hero-subtitle {
        font-size: 1.3em;
      }
      .page-8k8-com-login-password__section-title {
        font-size: 2em;
      }
      .page-8k8-com-login-password__cta-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-login-password__container {
        padding: 15px;
      }
      .page-8k8-com-login-password__hero-section {
        padding: 40px 15px;
        margin-bottom: 30px;
        padding-top: calc(10px + var(--header-offset, 0px));
      }
      .page-8k8-com-login-password__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-com-login-password__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-com-login-password__promo-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-com-login-password__section {
        padding: 25px;
        margin-bottom: 25px;
      }
      .page-8k8-com-login-password__section-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login-password__section-description {
        font-size: 1em;
      }

      /* List item responsiveness for mobile */
      .page-8k8-com-login-password__steps-list,
      .page-8k8-com-login-password__tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-8k8-com-login-password__step-item,
      .page-8k8-com-login-password__tip-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-com-login-password__step-description,
      .page-8k8-com-login-password__tip-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-com-login-password__image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-login-password__responsive-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-8k8-com-login-password__cta-section {
        padding: 30px 15px;
      }
      .page-8k8-com-login-password__cta-title {
        font-size: 2em;
      }
      .page-8k8-com-login-password__cta-text {
        font-size: 1em;
      }

      .page-8k8-com-login-password__faq-section {
        padding: 25px;
      }
      .page-8k8-com-login-password__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }
      .page-8k8-com-login-password__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-com-login-password__faq-toggle {
        font-size: 1.5em;
      }
      .page-8k8-com-login-password__faq-answer {
        padding: 15px 15px;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-login-password__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login-password__hero-subtitle {
        font-size: 0.9em;
      }
      .page-8k8-com-login-password__section-title {
        font-size: 1.6em;
      }
      .page-8k8-com-login-password__cta-title {
        font-size: 1.8em;
      }
    }
  