
    /* Page specific styles for 8k8-com-login-register */
    .page-8k8-com-login-register {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 50px; /* Ensure space above footer */
    }

    /* Fixed navigation bar spacing: assuming body has padding-top from shared.css */
    .page-8k8-com-login-register__hero-section {
      padding-top: 10px; /* Decorative top spacing, not for header offset */
    }

    .page-8k8-com-login-register__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-8k8-com-login-register__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-8k8-com-login-register__section-title {
      font-size: 2.5em;
      color: #2c3e50;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-8k8-com-login-register__section--dark .page-8k8-com-login-register__section-title {
      color: #ecf0f1;
    }

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

    /* Hero Section */
    .page-8k8-com-login-register__hero-section {
      background: linear-gradient(135deg, #0a0a0a, #333333);
      color: #fff;
      padding: 80px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-com-login-register__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 0;
    }

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

    .page-8k8-com-login-register__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #f39c12; /* Brand accent color */
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

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

    .page-8k8-com-login-register__cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-com-login-register__button {
      display: inline-block;
      padding: 15px 30px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      color: #fff;
      background-color: #f39c12; /* Accent color */
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

    .page-8k8-com-login-register__button--secondary {
      background-color: #3498db; /* Another accent color */
    }

    .page-8k8-com-login-register__button:hover {
      background-color: #e67e22; /* Darker accent */
      transform: translateY(-3px);
    }

    .page-8k8-com-login-register__button--secondary:hover {
      background-color: #2980b9; /* Darker secondary */
      transform: translateY(-3px);
    }

    /* Content Blocks */
    .page-8k8-com-login-register__content-block {
      display: flex;
      align-items: center;
      gap: 40px;
      margin-bottom: 60px;
      text-align: left;
    }

    .page-8k8-com-login-register__content-block:nth-child(even) {
      flex-direction: row-reverse;
    }

    .page-8k8-com-login-register__block-text {
      flex: 1;
    }

    .page-8k8-com-login-register__block-title {
      font-size: 2em;
      margin-bottom: 15px;
      color: #2c3e50;
    }

    .page-8k8-com-login-register__section--dark .page-8k8-com-login-register__block-title {
      color: #f39c12;
    }

    .page-8k8-com-login-register__block-image-wrapper {
      flex: 1;
      min-width: 300px; /* Ensure image doesn't get too small */
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }

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

    /* Steps List */
    .page-8k8-com-login-register__steps-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-8k8-com-login-register__step-item {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      text-align: center;
      transition: transform 0.3s ease;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

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

    .page-8k8-com-login-register__step-number {
      font-size: 2.5em;
      color: #f39c12;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .page-8k8-com-login-register__step-title {
      font-size: 1.5em;
      color: #2c3e50;
      margin-bottom: 10px;
    }

    .page-8k8-com-login-register__step-description {
      font-size: 1em;
      color: #555;
    }

    /* Payments and Providers */
    .page-8k8-com-login-register__grid-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .page-8k8-com-login-register__grid-item {
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      text-align: center;
      font-weight: bold;
      color: #2c3e50;
      font-size: 1.1em;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-8k8-com-login-register__section--dark .page-8k8-com-login-register__grid-item {
      background-color: #3f51b5;
      color: #fff;
    }

    /* FAQ Section */
    .page-8k8-com-login-register__faq-container {
      max-width: 900px;
      margin: 40px auto;
      text-align: left;
    }

    .page-8k8-com-login-register__faq-item {
      background-color: #fff;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-com-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f39c12;
      color: #fff;
      font-weight: bold;
      font-size: 1.2em;
      border-bottom: 1px solid rgba(255,255,255,0.2);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-8k8-com-login-register__faq-question:hover {
      background-color: #e67e22;
    }

    .page-8k8-com-login-register__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
      color: #fff; /* Ensure contrast */
    }

    .page-8k8-com-login-register__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent div */
    }

    .page-8k8-com-login-register__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;
      background-color: #fefefe;
      color: #333;
    }

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

    .page-8k8-com-login-register__faq-item.active .page-8k8-com-login-register__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-login-register__hero-title {
        font-size: 3em;
      }

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

    @media (max-width: 768px) {
      .page-8k8-com-login-register__hero-title {
        font-size: 2.5em;
      }

      .page-8k8-com-login-register__hero-subtitle {
        font-size: 1.2em;
      }

      .page-8k8-com-login-register__cta-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-8k8-com-login-register__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
      }

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

      .page-8k8-com-login-register__section-title {
        font-size: 2em;
      }

      .page-8k8-com-login-register__content-block {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
      }

      .page-8k8-com-login-register__content-block:nth-child(even) {
        flex-direction: column; /* Reset for mobile */
      }

      .page-8k8-com-login-register__block-image-wrapper {
        margin-top: 20px;
        width: 100%; /* Ensure full width */
      }

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

      .page-8k8-com-login-register__steps-list,
      .page-8k8-com-login-register__grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
      }

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

      /* List container mobile responsiveness */
      .page-8k8-com-login-register__steps-list,
      .page-8k8-com-login-register__grid-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important; /* Adjust overall padding */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-com-login-register__faq-container {
        margin: 30px 15px;
      }

      .page-8k8-com-login-register__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }

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

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

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

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

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

      .page-8k8-com-login-register__block-title {
        font-size: 1.5em;
      }
    }
  