
    /* Base styles for the page */
    .page-8k8-com-register-login {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    /* Fixed nav bar offset - Fallback if body padding is not handled by shared.css */
    .page-8k8-com-register-login {
        padding-top: var(--header-offset, 122px);
    }

    .page-8k8-com-register-login__hero-section {
      position: relative;
      color: #fff;
      text-align: center;
      padding: 10px 20px 80px; /* Decorative top padding, actual offset by main container */
      background-color: #0d1a2f; /* Dark background for contrast */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
    }

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

    .page-8k8-com-register-login__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding-top: 50px; /* Additional padding for content below header */
    }

    .page-8k8-com-register-login__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold color for highlights */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-weight: 700;
    }

    .page-8k8-com-register-login__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      font-weight: 300;
    }

    .page-8k8-com-register-login__button {
      display: inline-block;
      background-color: #ffcc00;
      color: #0d1a2f;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-com-register-login__button:hover {
      background-color: #e6b800;
      transform: translateY(-2px);
    }

    .page-8k8-com-register-login__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-bottom: 1px solid #eee;
    }

    .page-8k8-com-register-login__section--dark {
      background-color: #0d1a2f;
      color: #fff;
    }

    .page-8k8-com-register-login__section-title {
      font-size: 2.5em;
      color: #0d1a2f;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      font-weight: 700;
    }

    .page-8k8-com-register-login__section--dark .page-8k8-com-register-login__section-title {
      color: #ffcc00;
    }

    .page-8k8-com-register-login__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #ffcc00;
      margin: 15px auto 0;
      border-radius: 2px;
    }

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

    .page-8k8-com-register-login__card {
      background-color: #fefefe;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      border: 1px solid #eee;
    }

    .page-8k8-com-register-login__section--dark .page-8k8-com-register-login__card {
      background-color: #1a2b42;
      color: #fefefe;
      border-color: #334a66;
    }

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

    .page-8k8-com-register-login__card-image {
      width: 100%;
      height: 200px; /* Min height 200px */
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .page-8k8-com-register-login__card-title {
      font-size: 1.6em;
      color: #0d1a2f;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-8k8-com-register-login__section--dark .page-8k8-com-register-login__card-title {
      color: #ffcc00;
    }

    .page-8k8-com-register-login__card-description {
      font-size: 1em;
      color: #666;
      flex-grow: 1; /* Allows description to take available space */
    }

    .page-8k8-com-register-login__section--dark .page-8k8-com-register-login__card-description {
      color: #ccc;
    }

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

    .page-8k8-com-register-login__step-item {
      background-color: #fefefe;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
      padding: 30px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      border: 1px solid #eee;
    }

    .page-8k8-com-register-login__section--dark .page-8k8-com-register-login__step-item {
      background-color: #1a2b42;
      color: #fefefe;
      border-color: #334a66;
    }

    .page-8k8-com-register-login__step-number {
      font-size: 2.5em;
      font-weight: bold;
      color: #ffcc00;
      flex-shrink: 0;
    }

    .page-8k8-com-register-login__step-content h3 {
      font-size: 1.5em;
      color: #0d1a2f;
      margin-top: 0;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .page-8k8-com-register-login__section--dark .page-8k8-com-register-login__step-content h3 {
      color: #ffcc00;
    }

    .page-8k8-com-register-login__step-content p {
      font-size: 1em;
      color: #666;
    }

    .page-8k8-com-register-login__section--dark .page-8k8-com-register-login__step-content p {
      color: #ccc;
    }

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

    .page-8k8-com-register-login__payment-item {
      background-color: #fefefe;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      border: 1px solid #eee;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .page-8k8-com-register-login__section--dark .page-8k8-com-register-login__payment-item {
      background-color: #1a2b42;
      border-color: #334a66;
    }

    .page-8k8-com-register-login__payment-logo {
      min-width: 200px; /* Enforce minimum size */
      min-height: 200px; /* Enforce minimum size */
      width: 200px; /* Fixed width for better display */
      height: 200px; /* Fixed height for better display */
      object-fit: contain; /* Ensure logo is fully visible without cropping */
      margin: 0 auto 10px;
      max-width: 100%; /* Ensure responsiveness */
      box-sizing: border-box;
    }
    
    .page-8k8-com-register-login__payment-item p {
        margin: 0;
        font-weight: 600;
        color: #0d1a2f;
    }

    .page-8k8-com-register-login__section--dark .page-8k8-com-register-login__payment-item p {
        color: #ffcc00;
    }


    .page-8k8-com-register-login__faq-section {
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto;
      background-color: #fff;
    }

    .page-8k8-com-register-login__faq-item {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      background-color: #fefefe;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-8k8-com-register-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: #f2f2f2;
      cursor: pointer;
      user-select: none;
      font-size: 1.15em;
      font-weight: bold;
      color: #0d1a2f;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-com-register-login__faq-question h3 {
      margin: 0;
      font-size: 1.15em; /* Match parent font size */
      color: #0d1a2f;
      pointer-events: none; /* Prevent h3 from blocking click event */
      font-weight: bold;
    }

    .page-8k8-com-register-login__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      font-weight: bold;
      color: #ffcc00;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-8k8-com-register-login__faq-item.active .page-8k8-com-register-login__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an 'x' or minus */
    }

    .page-8k8-com-register-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* 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;
      background-color: #fff;
      color: #333;
    }

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

    .page-8k8-com-register-login__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .page-8k8-com-register-login {
        padding-top: var(--header-offset, 90px); /* Adjust for smaller header on mobile */
      }

      .page-8k8-com-register-login__hero-content {
        padding-top: 30px;
      }

      .page-8k8-com-register-login__hero-title {
        font-size: 2.2em;
      }

      .page-8k8-com-register-login__hero-subtitle {
        font-size: 1.1em;
      }

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

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

      .page-8k8-com-register-login__grid,
      .page-8k8-com-register-login__steps-list,
      .page-8k8-com-register-login__payment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-com-register-login__card,
      .page-8k8-com-register-login__step-item,
      .page-8k8-com-register-login__payment-item {
        padding: 20px;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

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

      .page-8k8-com-register-login__payment-logo {
        min-width: 200px !important;
        min-height: 200px !important;
        width: 100% !important; /* Allow it to scale up to 100% of parent */
        height: auto !important; /* Maintain aspect ratio */
        max-width: 250px !important; /* Constrain max width for logos */
        box-sizing: border-box !important;
      }

      .page-8k8-com-register-login__faq-section {
        padding: 40px 15px;
      }

      .page-8k8-com-register-login__faq-question {
        padding: 15px;
        font-size: 1em;
      }

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

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

      .page-8k8-com-register-login__faq-item.active .page-8k8-com-register-login__faq-answer {
        padding: 15px 15px !important;
      }
      
      /* Ensure text wrapping for list items and general content */
      .page-8k8-com-register-login__card-description,
      .page-8k8-com-register-login__step-content p,
      .page-8k8-com-register-login__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

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

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

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

      .page-8k8-com-register-login__section-title {
        font-size: 1.8em;
      }
    }
  