
    /* Page-specific CSS for 8k8 com login */
    :root {
      --page-8k8-com-login__primary-color: #f7931e; /* Orange */
      --page-8k8-com-login__secondary-color: #333; /* Dark Grey */
      --page-8k8-com-login__accent-color: #4CAF50; /* Green */
      --page-8k8-com-login__text-color: #fff; /* White */
      --page-8k8-com-login__background-dark: #1a1a1a; /* Very Dark Grey */
      --page-8k8-com-login__background-light: #2c2c2c; /* Darker Grey */
      --page-8k8-com-login__border-color: #555; /* Medium Grey */
    }

    .page-8k8-com-login {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-com-login__text-color);
      background-color: var(--page-8k8-com-login__background-dark);
      line-height: 1.6;
      padding-bottom: 40px; /* Ensure space above footer */
    }

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

    .page-8k8-com-login__hero-section {
      background-color: var(--page-8k8-com-login__background-dark);
      text-align: center;
      padding: 10px 20px 60px; /* 10px top padding for hero, assuming body handles header offset */
      position: relative;
      overflow: hidden;
    }

    .page-8k8-com-login__hero-image {
      width: 100%;
      height: 400px; /* Fixed height for desktop */
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
      opacity: 0.3;
    }

    .page-8k8-com-login__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      background: rgba(0, 0, 0, 0.6);
      padding: 30px;
      border-radius: 10px;
    }

    .page-8k8-com-login__hero-title {
      font-size: 3em;
      color: var(--page-8k8-com-login__primary-color);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-com-login__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--page-8k8-com-login__text-color);
    }

    .page-8k8-com-login__button {
      display: inline-block;
      background-color: var(--page-8k8-com-login__primary-color);
      color: var(--page-8k8-com-login__text-color);
      padding: 15px 30px;
      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-com-login__button:hover {
      background-color: #e07b00; /* Darker orange */
    }

    .page-8k8-com-login__title {
      font-size: 2.5em;
      color: var(--page-8k8-com-login__primary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-8k8-com-login__title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-8k8-com-login__primary-color);
      border-radius: 2px;
    }

    .page-8k8-com-login__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-login__feature-card {
      background-color: var(--page-8k8-com-login__background-light);
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      border: 1px solid var(--page-8k8-com-login__border-color);
    }

    .page-8k8-com-login__feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-login__card-image-container {
      width: 100%;
      max-width: 300px; /* Adjust as needed */
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    .page-8k8-com-login__card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .page-8k8-com-login__feature-card:hover .page-8k8-com-login__card-image {
      transform: scale(1.05);
    }

    .page-8k8-com-login__card-title {
      font-size: 1.5em;
      color: var(--page-8k8-com-login__primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-com-login__card-description {
      font-size: 1em;
      color: var(--page-8k8-com-login__text-color);
      flex-grow: 1;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-8k8-com-login__steps-list {
      list-style: none;
      padding: 0;
      margin: 40px 0;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .page-8k8-com-login__step-item {
      background-color: var(--page-8k8-com-login__background-light);
      padding: 25px;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--page-8k8-com-login__border-color);
      transition: transform 0.2s ease;
    }

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

    .page-8k8-com-login__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--page-8k8-com-login__primary-color);
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: rgba(247, 147, 30, 0.2);
      border-radius: 50%;
    }

    .page-8k8-com-login__step-content {
      flex-grow: 1;
    }

    .page-8k8-com-login__step-title {
      font-size: 1.4em;
      color: var(--page-8k8-com-login__primary-color);
      margin-bottom: 10px;
    }

    .page-8k8-com-login__step-description {
      font-size: 1em;
      color: var(--page-8k8-com-login__text-color);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-com-login__payment-methods-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin-top: 40px;
      text-align: center;
    }

    .page-8k8-com-login__payment-item {
      background-color: var(--page-8k8-com-login__background-light);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--page-8k8-com-login__border-color);
      transition: transform 0.2s ease;
    }

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

    .page-8k8-com-login__payment-image-container {
      width: 100%;
      max-width: 150px; /* Adjust as needed */
      height: 100px; /* Fixed height */
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-com-login__payment-image {
      width: 100%;
      height: 100%;
      object-fit: contain; /* Use contain for logos */
    }

    .page-8k8-com-login__payment-name {
      font-size: 1.1em;
      font-weight: bold;
      color: var(--page-8k8-com-login__text-color);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-8k8-com-login__faq-section {
      background-color: var(--page-8k8-com-login__background-dark);
    }

    .page-8k8-com-login__faq-container {
      margin-top: 40px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-8k8-com-login__faq-item {
      background-color: var(--page-8k8-com-login__background-light);
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      border: 1px solid var(--page-8k8-com-login__border-color);
      overflow: hidden;
    }

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

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

    .page-8k8-com-login__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-8k8-com-login__primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-com-login__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-com-login__primary-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      width: 25px; /* Fixed width to prevent layout shift */
      text-align: center;
    }

    .page-8k8-com-login__faq-item.active .page-8k8-com-login__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar */
    }

    .page-8k8-com-login__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__text-color);
      background-color: var(--page-8k8-com-login__background-light);
    }

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

    .page-8k8-com-login__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-com-login__faq-answer p:last-child {
      margin-bottom: 0;
    }

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

      .page-8k8-com-login__hero-description {
        font-size: 1em;
      }

      .page-8k8-com-login__title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-8k8-com-login__section {
        padding: 30px 15px;
      }

      .page-8k8-com-login__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-com-login__feature-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

      .page-8k8-com-login__card-image-container {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important; /* Allow auto height for mobile images */
        min-height: 200px; /* Ensure minimum height */
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

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

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

      .page-8k8-com-login__step-number {
        margin-bottom: 15px;
      }

      .page-8k8-com-login__payment-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
      }

      .page-8k8-com-login__payment-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__payment-image-container {
        width: 100% !important;
        max-width: 120px !important;
        height: auto !important;
        min-height: 80px;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

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

      .page-8k8-com-login__faq-question {
        padding: 15px 20px;
      }

      .page-8k8-com-login__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-com-login__faq-answer {
        padding: 0 20px;
      }

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

    @media (max-width: 480px) {
      .page-8k8-com-login__hero-title {
        font-size: 1.8em;
      }

      .page-8k8-com-login__hero-description {
        font-size: 0.9em;
      }

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

      .page-8k8-com-login__title {
        font-size: 1.8em;
      }

      .page-8k8-com-login__card-title {
        font-size: 1.3em;
      }

      .page-8k8-com-login__step-title {
        font-size: 1.2em;
      }

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