
    /* 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 handled by body in shared.css for header offset */
    }

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

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

    .page-8k8-com-login-password__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Brand colors */
      color: #fff;
      padding: 20px 20px 60px 20px; /* Decorative top padding, balanced with bottom */
      text-align: center;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-com-login-password__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('[GALLERY:pattern:1920x1080:geometric,abstract,subtle]');
      background-size: cover;
      opacity: 0.1;
      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: 3em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

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

    .page-8k8-com-login-password__cta-button {
      display: inline-block;
      background-color: #ffcc00; /* Bright yellow for CTA */
      color: #333;
      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;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

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

    .page-8k8-com-login-password__image-wrapper {
      margin: 30px 0;
      text-align: center;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

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

    .page-8k8-com-login-password__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-8k8-com-login-password__list-item {
      background-color: #f0f0f0;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .page-8k8-com-login-password__list-icon {
      flex-shrink: 0;
      width: 60px; /* Min size for image placeholders */
      height: 60px;
      object-fit: contain;
      border-radius: 4px;
    }

    .page-8k8-com-login-password__list-content h3 {
      margin-top: 0;
      color: #1a2a6c;
      font-size: 1.25em;
    }

    .page-8k8-com-login-password__list-content p {
      margin-bottom: 0;
    }

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

    .page-8k8-com-login-password__faq-item {
      border-bottom: 1px solid #eee;
      padding: 15px 0;
    }

    .page-8k8-com-login-password__faq-item:last-child {
      border-bottom: none;
    }

    .page-8k8-com-login-password__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      padding: 10px 0;
      transition: background-color 0.3s ease;
    }

    .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 on parent */
    }

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

    .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 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;
    }

    .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 adjustments */
    @media (max-width: 768px) {
      .page-8k8-com-login-password__hero-title {
        font-size: 2.2em;
      }

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

      .page-8k8-com-login-password__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-com-login-password__section {
        padding: 20px;
        margin-bottom: 20px;
      }

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

      .page-8k8-com-login-password__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
      }

      .page-8k8-com-login-password__list-content h3 {
        font-size: 1.1em;
      }

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

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

      .page-8k8-com-login-password__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-login-password__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-login-password__list-item p,
      .page-8k8-com-login-password__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-login-password__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login-password__hero-section {
        padding: 40px 15px 50px 15px; /* Adjusted padding for smaller screens */
      }
      .page-8k8-com-login-password__container {
        padding: 10px;
      }
    }
  