
    /* CSS for page-8k8-6 */
    :root {
      --page-8k8-6-primary-color: #e44d26; /* A vibrant orange for action */
      --page-8k8-6-secondary-color: #333;
      --page-8k8-6-background-dark: #1a1a1a;
      --page-8k8-6-background-light: #f0f0f0;
      --page-8k8-6-text-color-light: #f0f0f0;
      --page-8k8-6-text-color-dark: #333;
      --page-8k8-6-border-radius: 8px;
      --page-8k8-6-spacing-md: 20px;
      --page-8k8-6-spacing-lg: 40px;
      --page-8k8-6-max-width: 1200px;
    }

    .page-8k8-6 {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-6-text-color-light);
      background-color: var(--page-8k8-6-background-dark);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for body padding */
    }

    /* General Section Styling */
    .page-8k8-6__section {
      padding: var(--page-8k8-6-spacing-lg) var(--page-8k8-6-spacing-md);
      margin: 0 auto;
      max-width: var(--page-8k8-6-max-width);
    }

    .page-8k8-6__section--dark {
      background-color: var(--page-8k8-6-background-dark);
      color: var(--page-8k8-6-text-color-light);
    }

    .page-8k8-6__section--light {
      background-color: var(--page-8k8-6-background-light);
      color: var(--page-8k8-6-text-color-dark);
    }

    .page-8k8-6__container {
      max-width: var(--page-8k8-6-max-width);
      margin: 0 auto;
      padding: 0 var(--page-8k8-6-spacing-md);
      box-sizing: border-box;
    }

    .page-8k8-6__heading-primary {
      font-size: 2.8em;
      text-align: center;
      margin-bottom: var(--page-8k8-6-spacing-md);
      color: var(--page-8k8-6-primary-color);
      word-wrap: break-word; /* Ensure long titles wrap */
    }

    .page-8k8-6__heading-secondary {
      font-size: 2.2em;
      text-align: center;
      margin-top: var(--page-8k8-6-spacing-lg);
      margin-bottom: var(--page-8k8-6-spacing-md);
      color: var(--page-8k8-6-text-color-light);
      word-wrap: break-word;
    }

    .page-8k8-6__heading-tertiary {
      font-size: 1.6em;
      margin-bottom: 15px;
      color: var(--page-8k8-6-primary-color);
      word-wrap: break-word;
    }

    .page-8k8-6__text-center {
      text-align: center;
    }

    .page-8k8-6__button {
      display: inline-block;
      background-color: var(--page-8k8-6-primary-color);
      color: #ffffff;
      padding: 15px 30px;
      border-radius: var(--page-8k8-6-border-radius);
      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-sizing: border-box;
      margin-top: var(--page-8k8-6-spacing-md);
    }

    .page-8k8-6__button:hover {
      background-color: #ff6f40;
      transform: translateY(-2px);
    }

    /* Hero Section */
    .page-8k8-6__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: 500px; /* Adjust as needed */
      padding: 10px var(--page-8k8-6-spacing-md) var(--page-8k8-6-spacing-lg); /* 10px top padding as per instruction */
      background-color: #0d0d0d;
    }

    .page-8k8-6__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.4;
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
      box-sizing: border-box; /* Responsive image container */
      overflow: hidden; /* Responsive image container */
    }

    .page-8k8-6__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: var(--page-8k8-6-spacing-md);
      background: rgba(0, 0, 0, 0.6);
      border-radius: var(--page-8k8-6-border-radius);
    }

    .page-8k8-6__hero-content p {
      font-size: 1.2em;
      margin-bottom: var(--page-8k8-6-spacing-md);
      color: var(--page-8k8-6-text-color-light);
    }

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

    .page-8k8-6__feature-item {
      background-color: #2a2a2a;
      padding: var(--page-8k8-6-spacing-md);
      border-radius: var(--page-8k8-6-border-radius);
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      box-sizing: border-box; /* List item responsive */
    }

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

    .page-8k8-6__feature-icon {
      width: 200px; /* Minimum size */
      height: 150px; /* Minimum size */
      object-fit: contain;
      margin-bottom: 15px;
      border-radius: var(--page-8k8-6-border-radius);
      max-width: 100%; /* Responsive image */
      height: auto; /* Responsive image */
      box-sizing: border-box; /* Responsive image container */
      overflow: hidden; /* Responsive image container */
    }

    .page-8k8-6__feature-item h3 {
      color: var(--page-8k8-6-primary-color);
      margin-bottom: 10px;
      word-wrap: break-word;
    }

    .page-8k8-6__feature-item p {
      color: var(--page-8k8-6-text-color-light);
      word-wrap: break-word;
    }

    /* Login Steps Section */
    .page-8k8-6__steps-list {
      list-style: none;
      padding: 0;
      margin-top: var(--page-8k8-6-spacing-md);
      display: flex;
      flex-direction: column;
      gap: var(--page-8k8-6-spacing-md);
    }

    .page-8k8-6__step-item {
      background-color: #2a2a2a;
      padding: var(--page-8k8-6-spacing-md);
      border-radius: var(--page-8k8-6-border-radius);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: flex-start;
      box-sizing: border-box; /* List item responsive */
    }

    .page-8k8-6__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--page-8k8-6-primary-color);
      margin-right: var(--page-8k8-6-spacing-md);
      flex-shrink: 0;
    }

    .page-8k8-6__step-content h3 {
      color: var(--page-8k8-6-primary-color);
      margin-top: 0;
      margin-bottom: 5px;
      word-wrap: break-word;
    }

    .page-8k8-6__step-content p {
      color: var(--page-8k8-6-text-color-light);
      word-wrap: break-word;
    }

    /* FAQ Section */
    .page-8k8-6__faq-list {
      margin-top: var(--page-8k8-6-spacing-md);
      list-style: none;
      padding: 0;
    }

    .page-8k8-6__faq-item {
      background-color: #2a2a2a;
      border-radius: var(--page-8k8-6-border-radius);
      margin-bottom: 10px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      box-sizing: border-box; /* List item responsive */
    }

    .page-8k8-6__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a3a;
      color: var(--page-8k8-6-text-color-light);
      transition: background-color 0.3s ease;
    }

    .page-8k8-6__faq-question:hover {
      background-color: #4a4a4a;
    }

    .page-8k8-6__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
    }

    .page-8k8-6__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--page-8k8-6-primary-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8k8-6__faq-item.active .page-8k8-6__faq-toggle {
      transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-8k8-6__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      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-6-text-color-light);
      background-color: #2a2a2a;
    }

    .page-8k8-6__faq-item.active .page-8k8-6__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important;
      opacity: 1;
    }

    .page-8k8-6__faq-answer p {
      margin: 0;
      word-wrap: break-word;
    }

    /* Call to Action Section */
    .page-8k8-6__cta-section {
      text-align: center;
      background-color: var(--page-8k8-6-primary-color);
      color: #ffffff;
      padding: var(--page-8k8-6-spacing-lg) var(--page-8k8-6-spacing-md);
      margin-top: var(--page-8k8-6-spacing-lg);
    }

    .page-8k8-6__cta-section h2 {
      font-size: 2.5em;
      margin-bottom: var(--page-8k8-6-spacing-md);
      color: #ffffff;
      word-wrap: break-word;
    }

    .page-8k8-6__cta-section p {
      font-size: 1.2em;
      margin-bottom: var(--page-8k8-6-spacing-md);
      color: #ffffff;
      word-wrap: break-word;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-6__heading-primary {
        font-size: 2em;
      }

      .page-8k8-6__heading-secondary {
        font-size: 1.8em;
      }

      .page-8k8-6__hero-content {
        padding: 15px;
      }

      .page-8k8-6__hero-content p {
        font-size: 1em;
      }

      .page-8k8-6__button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-8k8-6__section {
        padding: var(--page-8k8-6-spacing-md) 15px;
      }

      .page-8k8-6__container {
        padding: 0 15px;
      }

      /* List item responsive styles */
      .page-8k8-6__features-grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-6__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for mobile */
      }

      .page-8k8-6__feature-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

      .page-8k8-6__steps-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
      }

      .page-8k8-6__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for mobile */
      }

      .page-8k8-6__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
      }

      .page-8k8-6__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-6__faq-question {
        padding: 12px 15px;
      }

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

      .page-8k8-6__faq-answer {
        padding: 15px !important;
      }

      .page-8k8-6__cta-section h2 {
        font-size: 1.8em;
      }

      .page-8k8-6__cta-section p {
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-6__hero-section {
        min-height: 400px;
      }

      .page-8k8-6__heading-primary {
        font-size: 1.8em;
      }

      .page-8k8-6__heading-secondary {
        font-size: 1.5em;
      }

      .page-8k8-6__heading-tertiary {
        font-size: 1.3em;
      }
    }
  