
    /* Page-specific styles for 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: 60px; /* Space for floating buttons */
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    /* Hero Section */
    .page-8k8-com-login-password__hero-section {
      position: relative;
      padding: 60px 20px;
      background: linear-gradient(135deg, #001f3f, #003366);
      color: #fff;
      text-align: center;
      overflow: hidden;
      padding-top: 10px; /* Small top padding, assuming body handles main offset */
    }

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

    .page-8k8-com-login-password__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #ffd700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

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

    .page-8k8-com-login-password__action-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-8k8-com-login-password__button {
      background-color: #ffd700;
      color: #001f3f;
      padding: 15px 30px;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
    }

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

    .page-8k8-com-login-password__button--secondary {
      background-color: #0056b3;
      color: #fff;
    }

    .page-8k8-com-login-password__button--secondary:hover {
      background-color: #004085;
    }

    /* Content Sections */
    .page-8k8-com-login-password__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .page-8k8-com-login-password__section-title {
      font-size: 2.2em;
      color: #001f3f;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-8k8-com-login-password__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffd700;
      border-radius: 2px;
    }

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

    .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: #f0f8ff;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .page-8k8-com-login-password__feature-icon {
      width: 100px;
      height: auto;
      margin-bottom: 15px;
      max-width: 100%;
      box-sizing: border-box;
    }

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

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

    .page-8k8-com-login-password__step-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
      background-color: #e6f7ff;
      padding: 20px;
      border-left: 5px solid #007bff;
      border-radius: 5px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
      box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-8k8-com-login-password__step-number {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      background-color: #007bff;
      color: #fff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.2em;
      margin-right: 15px;
    }

    .page-8k8-com-login-password__step-content h3 {
      margin-top: 0;
      color: #003366;
      font-size: 1.3em;
    }

    .page-8k8-com-login-password__step-content p {
      margin-bottom: 0;
      color: #444;
    }

    /* Floating Buttons */
    .page-8k8-com-login-password__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: calc(100% - 40px);
      max-width: 400px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-8k8-com-login-password__floating-button {
      flex: 1;
      min-width: 120px;
      background-color: #ffd700;
      color: #001f3f;
      padding: 12px 20px;
      border: none;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: flex;
      justify-content: center;
      align-items: center;
    }

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

    .page-8k8-com-login-password__floating-button--login {
      background-color: #007bff;
      color: #fff;
    }

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

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

    .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: #f5f5f5;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #003366;
      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;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-com-login-password__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 10px;
      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); /* Changes '+' to 'x' or similar effect */
    }

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

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

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

    /* Responsive adjustments */
    @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 {
        font-size: 1.8em;
      }

      .page-8k8-com-login-password__button {
        padding: 12px 20px;
        font-size: 1em;
      }

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

      .page-8k8-com-login-password__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-com-login-password__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }

      .page-8k8-com-login-password__step-content {
        width: 100%;
      }

      .page-8k8-com-login-password__step-content p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com-login-password__floating-buttons {
        flex-direction: column;
        gap: 10px;
        max-width: 90%;
      }

      .page-8k8-com-login-password__floating-button {
        width: 100%;
      }

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

      .page-8k8-com-login-password__faq-answer {
        padding: 15px !important;
      }

      /* Image responsiveness */
      .page-8k8-com-login-password__feature-icon,
      .page-8k8-com-login-password__image-full-width {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-login-password__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  