
    /* Global styles for the page, restricted to .page-8k8-login scope */
    .page-8k8-login {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px; /* Ensure space above footer */
    }

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

    .page-8k8-login__section {
      padding: 40px 0;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-login__section--dark {
        background-color: #222;
        color: #eee;
    }

    .page-8k8-login__section--dark .page-8k8-login__heading,
    .page-8k8-login__section--dark .page-8k8-login__subheading,
    .page-8k8-login__section--dark .page-8k8-login__paragraph,
    .page-8k8-login__section--dark .page-8k8-login__feature-title,
    .page-8k8-login__section--dark .page-8k8-login__feature-description {
        color: #eee; /* Ensure good contrast on dark background */
    }
    .page-8k8-login__section--dark .page-8k8-login__heading {
        color: #ffc107; /* Specific color for heading on dark background */
    }


    .page-8k8-login__heading {
      text-align: center;
      color: #0056b3; /* A strong blue for headings */
      margin-bottom: 30px;
      font-size: 2.5em;
    }

    .page-8k8-login__subheading {
      text-align: center;
      color: #0056b3;
      margin-bottom: 20px;
      font-size: 1.8em;
    }

    .page-8k8-login__paragraph {
      margin-bottom: 15px;
      font-size: 1em;
      text-align: justify;
    }

    .page-8k8-login__button {
      display: inline-block;
      background-color: #007bff; /* Primary button color */
      color: #fff;
      padding: 12px 25px;
      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-login__button:hover {
      background-color: #0056b3;
    }

    /* Hero Section */
    .page-8k8-login__hero-section {
      position: relative;
      width: 100%;
      height: 450px; /* Increased height for impact */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Small top padding, assuming body has header offset */
      box-sizing: border-box;
    }

    .page-8k8-login__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Darken background for text readability */
    }

    .page-8k8-login__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
      border-radius: 10px;
    }

    .page-8k8-login__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      line-height: 1.2;
      color: #fff;
    }

    .page-8k8-login__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #f0f0f0;
    }

    /* Login Steps Section */
    .page-8k8-login__steps-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-login__step-item {
      background-color: #f0f8ff; /* Light blue background for steps */
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

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

    .page-8k8-login__step-number {
      font-size: 2.5em;
      color: #007bff;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-8k8-login__step-title {
      font-size: 1.4em;
      color: #333;
      margin-bottom: 10px;
    }

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

    /* Features Section */
    .page-8k8-login__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-login__feature-card {
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Required for grid items */
    }

    .page-8k8-login__feature-card:hover {
      transform: translateY(-5px);
    }

    .page-8k8-login__feature-icon {
      width: 100%;
      max-width: 250px; /* Ensure images are not too small but fit */
      height: auto;
      margin-bottom: 15px;
      border-radius: 5px;
      object-fit: cover;
    }

    .page-8k8-login__feature-title {
      font-size: 1.4em;
      color: #333;
      margin-bottom: 10px;
    }

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

    /* FAQ Section */
    .page-8k8-login__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-8k8-login__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      overflow: hidden; /* Important for max-height transition */
      box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: #f0f8ff; /* Light background for questions */
      color: #333;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-8k8-login__faq-question:hover {
      background-color: #e0f0ff;
    }

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

    .page-8k8-login__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8k8-login__faq-item.active .page-8k8-login__faq-toggle {
      transform: rotate(45deg); /* Rotate for minus sign effect */
    }

    .page-8k8-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      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: 0.95em;
    }

    .page-8k8-login__faq-item.active .page-8k8-login__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 25px !important; /* Expanded padding */
      opacity: 1;
    }

    /* Call to Action Section */
    .page-8k8-login__cta-section {
      text-align: center;
      padding: 60px 0;
      background-color: #007bff; /* Vibrant background for CTA */
      color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-8k8-login__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #fff;
    }

    .page-8k8-login__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: #f0f0f0;
    }

    .page-8k8-login__cta-button {
      background-color: #ffc107; /* Contrasting button for CTA */
      color: #333;
      padding: 15px 35px;
      font-size: 1.3em;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-login__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-login__hero-title {
        font-size: 3em;
      }
      .page-8k8-login__hero-description {
        font-size: 1.2em;
      }
      .page-8k8-login__heading {
        font-size: 2em;
      }
      .page-8k8-login__subheading {
        font-size: 1.6em;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-login__container {
        padding: 0 15px;
      }

      .page-8k8-login__hero-section {
        height: 350px;
      }
      .page-8k8-login__hero-title {
        font-size: 2.5em;
      }
      .page-8k8-login__hero-description {
        font-size: 1em;
      }

      .page-8k8-login__heading {
        font-size: 1.8em;
        margin-bottom: 20px;
      }
      .page-8k8-login__subheading {
        font-size: 1.4em;
        margin-bottom: 15px;
      }
      .page-8k8-login__paragraph {
        font-size: 0.95em;
      }

      /* List item mobile responsiveness */
      .page-8k8-login__steps-list,
      .page-8k8-login__features-grid,
      .page-8k8-login__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        grid-template-columns: 1fr; /* Stack items */
      }

      .page-8k8-login__step-item,
      .page-8k8-login__feature-card,
      .page-8k8-login__faq-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 */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-login__faq-question {
        padding: 15px 20px;
      }
      .page-8k8-login__faq-question h3 {
        font-size: 1.1em;
      }
      .page-8k8-login__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-login__faq-item.active .page-8k8-login__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-login__cta-title {
        font-size: 2em;
      }
      .page-8k8-login__cta-description {
        font-size: 1em;
      }
      .page-8k8-login__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      /* Image responsiveness */
      .page-8k8-login__hero-background,
      .page-8k8-login__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-login__hero-title {
        font-size: 2em;
      }
      .page-8k8-login__hero-description {
        font-size: 0.9em;
      }
      .page-8k8-login__heading {
        font-size: 1.5em;
      }
      .page-8k8-login__subheading {
        font-size: 1.2em;
      }
      .page-8k8-login__cta-title {
        font-size: 1.8em;
      }
    }
  