
    /* Page specific CSS styles */
    :root {
      --page-8k8-com-login-11__primary-color: #007bff; /* A vibrant blue for brand accents */
      --page-8k8-com-login-11__secondary-color: #6c757d; /* A subtle grey for secondary text */
      --page-8k8-com-login-11__background-dark: #1a1a2e; /* Dark background for sections */
      --page-8k8-com-login-11__background-light: #f8f9fa; /* Light background for contrast */
      --page-8k8-com-login-11__text-color-light: #ffffff; /* Light text for dark backgrounds */
      --page-8k8-com-login-11__text-color-dark: #343a40; /* Dark text for light backgrounds */
      --page-8k8-com-login-11__border-color: #dee2e6;
      --page-8k8-com-login-11__accent-yellow: #ffc107; /* For highlight/buttons */
    }

    .page-8k8-com-login-11 {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-com-login-11__text-color-dark);
      background-color: var(--page-8k8-com-login-11__background-light);
      overflow-x: hidden; /* Prevent horizontal scroll due to padding/margin issues */
    }

    /* Hero Section */
    .page-8k8-com-login-11__hero-section {
      position: relative;
      background-color: var(--page-8k8-com-login-11__background-dark);
      color: var(--page-8k8-com-login-11__text-color-light);
      padding: 10px 0 60px 0; /* 10px top padding as per instruction, relying on body padding for header offset */
      text-align: center;
      overflow: hidden;
    }

    .page-8k8-com-login-11__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .page-8k8-com-login-11__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Subtle background image */
    }

    .page-8k8-com-login-11__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .page-8k8-com-login-11__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: var(--page-8k8-com-login-11__accent-yellow);
      font-weight: 700;
    }

    .page-8k8-com-login-11__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-login-11__button {
      display: inline-block;
      background-color: var(--page-8k8-com-login-11__accent-yellow);
      color: var(--page-8k8-com-login-11__background-dark);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

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

    /* General Section Styling */
    .page-8k8-com-login-11__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-com-login-11__section-dark {
      background-color: var(--page-8k8-com-login-11__background-dark);
      color: var(--page-8k8-com-login-11__text-color-light);
    }

    .page-8k8-com-login-11__section-title {
      font-size: 2.2em;
      margin-bottom: 40px;
      color: var(--page-8k8-com-login-11__primary-color);
      font-weight: 700;
    }

    .page-8k8-com-login-11__section-dark .page-8k8-com-login-11__section-title {
      color: var(--page-8k8-com-login-11__accent-yellow);
    }

    .page-8k8-com-login-11__paragraph {
      margin-bottom: 20px;
      font-size: 1.1em;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Features/Benefits Grid */
    .page-8k8-com-login-11__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-login-11__feature-item {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
    }

    .page-8k8-com-login-11__section-dark .page-8k8-com-login-11__feature-item {
        background-color: #2a2a40;
        color: var(--page-8k8-com-login-11__text-color-light);
    }

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

    .page-8k8-com-login-11__feature-icon {
      width: 200px; /* Min 200px requirement */
      height: 200px; /* Min 200px requirement */
      margin-bottom: 20px;
      display: block;
      margin-left: auto;
      margin-right: auto;
      object-fit: contain; /* Ensure image scales within the box */
      max-width: 100%; /* Responsive scaling */
      height: auto; /* Maintain aspect ratio */
    }

    .page-8k8-com-login-11__feature-title {
      font-size: 1.4em;
      margin-bottom: 15px;
      color: var(--page-8k8-com-login-11__primary-color);
    }
    .page-8k8-com-login-11__section-dark .page-8k8-com-login-11__feature-title {
        color: var(--page-8k8-com-login-11__accent-yellow);
    }

    /* Steps List */
    .page-8k8-com-login-11__steps-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 30px;
      text-align: left;
    }

    .page-8k8-com-login-11__step-item {
      display: flex;
      align-items: flex-start;
      background-color: #ffffff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-login-11__section-dark .page-8k8-com-login-11__step-item {
        background-color: #2a2a40;
        color: var(--page-8k8-com-login-11__text-color-light);
    }

    .page-8k8-com-login-11__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--page-8k8-com-login-11__primary-color);
      margin-right: 20px;
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--page-8k8-com-login-11__primary-color);
      border-radius: 50%;
    }

    .page-8k8-com-login-11__section-dark .page-8k8-com-login-11__step-number {
        color: var(--page-8k8-com-login-11__accent-yellow);
        border-color: var(--page-8k8-com-login-11__accent-yellow);
    }

    .page-8k8-com-login-11__step-content h3 {
      font-size: 1.3em;
      margin-top: 0;
      margin-bottom: 10px;
      color: var(--page-8k8-com-login-11__primary-color);
    }
    .page-8k8-com-login-11__section-dark .page-8k8-com-login-11__step-content h3 {
        color: var(--page-8k8-com-login-11__accent-yellow);
    }

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

    /* Image Container */
    .page-8k8-com-login-11__image-container {
      margin: 40px auto;
      max-width: 900px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

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

    /* FAQ Section */
    .page-8k8-com-login-11__faq-section {
      text-align: left;
    }

    .page-8k8-com-login-11__faq-list {
      margin-top: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .page-8k8-com-login-11__section-dark .page-8k8-com-login-11__faq-item {
        background-color: #2a2a40;
        border-color: #44445c;
    }

    .page-8k8-com-login-11__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #f0f0f0;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-login-11__section-dark .page-8k8-com-login-11__faq-question {
        background-color: #3a3a50;
    }

    .page-8k8-com-login-11__faq-question:hover {
      background-color: #e2e6ea;
    }

    .page-8k8-com-login-11__section-dark .page-8k8-com-login-11__faq-question:hover {
        background-color: #4a4a60;
    }

    .page-8k8-com-login-11__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: var(--page-8k8-com-login-11__text-color-dark);
      pointer-events: none; /* Prevent h3 from blocking click event on parent div */
    }

    .page-8k8-com-login-11__section-dark .page-8k8-com-login-11__faq-question h3 {
        color: var(--page-8k8-com-login-11__text-color-light);
    }

    .page-8k8-com-login-11__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-8k8-com-login-11__primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event on parent div */
    }

    .page-8k8-com-login-11__section-dark .page-8k8-com-login-11__faq-toggle {
        color: var(--page-8k8-com-login-11__accent-yellow);
    }

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

    .page-8k8-com-login-11__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-8k8-com-login-11__text-color-dark);
    }

    .page-8k8-com-login-11__section-dark .page-8k8-com-login-11__faq-answer {
        color: var(--page-8k8-com-login-11__text-color-light);
    }

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

    /* CTA Section */
    .page-8k8-com-login-11__cta-section {
      background-color: var(--page-8k8-com-login-11__primary-color);
      color: var(--page-8k8-com-login-11__text-color-light);
      padding: 60px 20px;
      text-align: center;
    }

    .page-8k8-com-login-11__cta-title {
      font-size: 2.2em;
      margin-bottom: 20px;
      color: var(--page-8k8-com-login-11__text-color-light);
    }

    .page-8k8-com-login-11__cta-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }


    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-8k8-com-login-11__hero-title {
        font-size: 2.2em;
      }

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

      .page-8k8-com-login-11__section {
        padding: 40px 15px;
      }

      .page-8k8-com-login-11__section-title {
        font-size: 1.8em;
      }

      .page-8k8-com-login-11__paragraph {
        font-size: 1em;
      }

      /* List item mobile responsiveness */
      .page-8k8-com-login-11__features-grid,
      .page-8k8-com-login-11__steps-list {
        display: block; /* Stack items */
        gap: 20px;
      }

      .page-8k8-com-login-11__feature-item,
      .page-8k8-com-login-11__step-item,
      .page-8k8-com-login-11__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px 15px !important; /* Adjust padding for smaller screens */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-8k8-com-login-11__steps-list {
        padding: 0 !important;
      }

      .page-8k8-com-login-11__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

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

      .page-8k8-com-login-11__faq-question {
        padding: 15px 20px;
      }

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

      .page-8k8-com-login-11__faq-answer {
        padding: 15px 20px;
      }

      .page-8k8-com-login-11__faq-item.active .page-8k8-com-login-11__faq-answer {
        padding: 15px 20px !important;
      }

      .page-8k8-com-login-11__image-container {
        margin: 20px auto;
      }

      /* Image responsiveness */
      .page-8k8-com-login-11__hero-image,
      .page-8k8-com-login-11__feature-icon,
      .page-8k8-com-login-11__content-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

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

    }

    @media (max-width: 480px) {
      .page-8k8-com-login-11__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login-11__button {
        padding: 12px 25px;
        font-size: 0.9em;
      }
      .page-8k8-com-login-11__section-title {
        font-size: 1.5em;
      }
      .page-8k8-com-login-11__faq-question h3 {
        font-size: 0.95em;
      }
    }
  