
    /* Base styles for the page content */
    .page-8k8-com-login-password {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f4f7f6;
      padding-bottom: 40px; /* Ensure space above footer */
    }

    /* Hero Section */
    .page-8k8-com-login-password__hero-section {
      position: relative;
      width: 100%;
      height: 450px; /* Fixed height for hero */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Rely on body padding for header offset, this is decorative */
    }

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

    .page-8k8-com-login-password__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.6); /* Darker overlay for text readability */
      border-radius: 10px;
    }

    .page-8k8-com-login-password__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold color for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

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

    .page-8k8-com-login-password__cta-button {
      display: inline-block;
      background-color: #007bff; /* Blue for action */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-8k8-com-login-password__cta-button:hover {
      background-color: #0056b3;
    }

    /* General Content Section Styling */
    .page-8k8-com-login-password__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-top: 25px;
    }

    .page-8k8-com-login-password__section:first-of-type {
      margin-top: 40px; /* Space after hero */
    }

    .page-8k8-com-login-password__section-title {
      font-size: 2.5em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 30px;
      border-bottom: 3px solid #ffcc00;
      padding-bottom: 10px;
      display: inline-block;
      width: auto;
      margin-left: auto;
      margin-right: auto;
    }

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

    /* Feature Grid / Steps */
    .page-8k8-com-login-password__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-com-login-password__feature-item {
      background-color: #f9f9f9;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for mobile list items */
    }

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

    .page-8k8-com-login-password__feature-icon {
      width: 120px; /* Increased size */
      height: 120px; /* Increased size */
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
    }

    .page-8k8-com-login-password__feature-title {
      font-size: 1.6em;
      color: #333;
      margin-bottom: 15px;
    }

    .page-8k8-com-login-password__feature-text {
      font-size: 1em;
      color: #666;
      word-wrap: break-word; /* Ensure text breaks */
      overflow-wrap: break-word; /* Ensure text breaks */
    }

    /* Image Container for general content */
    .page-8k8-com-login-password__image-container {
      margin: 30px auto;
      width: 100%;
      max-width: 800px;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

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

    /* FAQ Section */
    .page-8k8-com-login-password__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 40px auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-login-password__faq-title {
      font-size: 2.5em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 30px;
      border-bottom: 3px solid #ffcc00;
      padding-bottom: 10px;
      display: inline-block;
      width: auto;
      margin-left: auto;
      margin-right: auto;
    }

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

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

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

    .page-8k8-com-login-password__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word;
    }

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

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

    .page-8k8-com-login-password__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px; /* Initial padding */
      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;
      font-size: 1.05em;
    }

    .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 15px !important; /* Padding when open */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-com-login-password__hero-section {
        height: 350px;
      }

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

      .page-8k8-com-login-password__section,
      .page-8k8-com-login-password__faq-section {
        padding: 30px 15px;
        margin-top: 20px;
      }

      .page-8k8-com-login-password__section:first-of-type {
        margin-top: 30px;
      }

      .page-8k8-com-login-password__section-title,
      .page-8k8-com-login-password__faq-title {
        font-size: 2em;
        margin-bottom: 20px;
      }

      .page-8k8-com-login-password__section-description {
        font-size: 1em;
        margin-bottom: 30px;
      }

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

      /* Mobile list item responsiveness */
      .page-8k8-com-login-password__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for smaller screens */
      }

      .page-8k8-com-login-password__feature-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 15px;
      }

      .page-8k8-com-login-password__feature-title {
        font-size: 1.4em;
      }

      .page-8k8-com-login-password__feature-text {
        font-size: 0.95em;
      }

      .page-8k8-com-login-password__image-container {
        margin: 20px auto;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px; /* Add padding to container */
      }

      .page-8k8-com-login-password__content-image {
        max-width: 100% !important;
        height: auto !important;
      }

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

      .page-8k8-com-login-password__faq-question h3 {
        font-size: 1em;
      }

      .page-8k8-com-login-password__faq-answer {
        font-size: 0.95em;
        padding: 15px 15px !important; /* Adjust padding for mobile */
      }
    }

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

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

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