
    /* Color Palette */
    :root {
      --page-8k8-com-register-login-primary-color: #e6b800; /* Gold/Yellow */
      --page-8k8-com-register-login-secondary-color: #333; /* Dark Grey */
      --page-8k8-com-register-login-accent-color: #007bff; /* Blue */
      --page-8k8-com-register-login-text-color: #333;
      --page-8k8-com-register-login-light-text-color: #fff;
      --page-8k8-com-register-login-background-light: #f9f9f9;
      --page-8k8-com-register-login-background-dark: #222;
      --page-8k8-com-register-login-border-color: #ddd;
    }

    .page-8k8-com-register-login {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-com-register-login-text-color);
      padding-top: 10px; /* Minimal top padding as body handles header offset */
    }

    .page-8k8-com-register-login__section-title {
      font-size: 2.2em;
      color: var(--page-8k8-com-register-login-secondary-color);
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      padding-bottom: 15px;
    }

    .page-8k8-com-register-login__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-8k8-com-register-login-primary-color);
      border-radius: 2px;
    }

    .page-8k8-com-register-login__hero-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      background-color: var(--page-8k8-com-register-login-background-dark);
      color: var(--page-8k8-com-register-login-light-text-color);
      padding: 60px 20px;
      overflow: hidden;
      position: relative;
    }

    .page-8k8-com-register-login__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      opacity: 0.3; /* Subtle background */
    }

    .page-8k8-com-register-login__hero-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-8k8-com-register-login__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-com-register-login__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: var(--page-8k8-com-register-login-primary-color);
    }

    .page-8k8-com-register-login__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-8k8-com-register-login__hero-cta {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    }

    .page-8k8-com-register-login__button {
      display: inline-block;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      box-sizing: border-box; /* Crucial for button width */
      white-space: nowrap; /* Prevent button text from wrapping */
    }

    .page-8k8-com-register-login__button--primary {
      background-color: var(--page-8k8-com-register-login-primary-color);
      color: var(--page-8k8-com-register-login-text-color);
    }

    .page-8k8-com-register-login__button--primary:hover {
      background-color: #ffda47; /* Lighter gold */
      transform: translateY(-2px);
    }

    .page-8k8-com-register-login__button--secondary {
      background-color: transparent;
      color: var(--page-8k8-com-register-login-light-text-color);
      border: 2px solid var(--page-8k8-com-register-login-primary-color);
    }

    .page-8k8-com-register-login__button--secondary:hover {
      background-color: var(--page-8k8-com-register-login-primary-color);
      color: var(--page-8k8-com-register-login-text-color);
      transform: translateY(-2px);
    }

    .page-8k8-com-register-login__button--external {
      background-color: var(--page-8k8-com-register-login-accent-color);
      color: var(--page-8k8-com-register-login-light-text-color);
    }

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

    .page-8k8-com-register-login__steps-section,
    .page-8k8-com-register-login__features-section,
    .page-8k8-com-register-login__promo-section,
    .page-8k8-com-register-login__faq-section,
    .page-8k8-com-register-login__final-cta-section {
      padding: 80px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .page-8k8-com-register-login__step-card,
    .page-8k8-com-register-login__feature-card {
      background-color: var(--page-8k8-com-register-login-light-text-color);
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-8k8-com-register-login__step-card img,
    .page-8k8-com-register-login__feature-card img,
    .page-8k8-com-register-login__promo-image img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      object-fit: cover;
    }

    .page-8k8-com-register-login__step-title,
    .page-8k8-com-register-login__feature-title {
      font-size: 1.8em;
      color: var(--page-8k8-com-register-login-primary-color);
      margin-bottom: 15px;
    }

    .page-8k8-com-register-login__step-description,
    .page-8k8-com-register-login__feature-description {
      font-size: 1.1em;
      margin-bottom: 20px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-com-register-login__step-list {
      list-style: none;
      padding: 0;
      text-align: left;
      width: 100%;
      box-sizing: border-box; /* for the ul itself */
      margin-bottom: 20px;
    }

    .page-8k8-com-register-login__step-list-item {
      position: relative;
      padding-left: 30px;
      margin-bottom: 10px;
      font-size: 1.05em;
      word-wrap: break-word;
      overflow-wrap: break-word;
      box-sizing: border-box; /* Crucial for list items */
    }

    .page-8k8-com-register-login__step-list-item::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--page-8k8-com-register-login-primary-color);
      font-weight: bold;
    }

    .page-8k8-com-register-login__section-intro {
      text-align: center;
      font-size: 1.2em;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-com-register-login__promo-section {
      background-color: var(--page-8k8-com-register-login-primary-color);
      color: var(--page-8k8-com-register-login-text-color);
      text-align: center;
      padding: 60px 20px;
      border-radius: 10px;
      margin-top: 40px;
      margin-bottom: 40px;
    }

    .page-8k8-com-register-login__promo-section .page-8k8-com-register-login__section-title {
      color: var(--page-8k8-com-register-login-text-color);
    }

    .page-8k8-com-register-login__promo-section .page-8k8-com-register-login__section-title::after {
      background-color: var(--page-8k8-com-register-login-secondary-color);
    }

    .page-8k8-com-register-login__promo-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      margin-top: 30px;
    }

    .page-8k8-com-register-login__promo-text p {
      font-size: 1.2em;
      margin-bottom: 20px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-com-register-login__promo-image {
      max-width: 600px;
      width: 100%;
    }

    .page-8k8-com-register-login__final-cta-section {
      text-align: center;
      padding-top: 60px;
      padding-bottom: 60px;
      background-color: var(--page-8k8-com-register-login-background-light);
      border-radius: 10px;
      margin-top: 40px;
    }

    .page-8k8-com-register-login__final-cta-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-com-register-login__final-cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* FAQ Section */
    .page-8k8-com-register-login__faq-section {
      background-color: var(--page-8k8-com-register-login-background-light);
      padding: 80px 20px;
    }

    .page-8k8-com-register-login__faq-container {
      max-width: 900px;
      margin: 0 auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .page-8k8-com-register-login__faq-item {
      border-bottom: 1px solid var(--page-8k8-com-register-login-border-color);
    }

    .page-8k8-com-register-login__faq-item:last-child {
      border-bottom: none;
    }

    .page-8k8-com-register-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--page-8k8-com-register-login-light-text-color);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-com-register-login__faq-question-text {
      font-size: 1.2em;
      color: var(--page-8k8-com-register-login-secondary-color);
      margin: 0;
      pointer-events: none; /* Prevent click event from being blocked */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-8k8-com-register-login__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-8k8-com-register-login-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent click event from being blocked */
    }

    .page-8k8-com-register-login__faq-item.active .page-8k8-com-register-login__faq-toggle {
      transform: rotate(45deg); /* Changes + to x, or you can use a - sign */
    }

    .page-8k8-com-register-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px; /* Initial padding */
      background-color: var(--page-8k8-com-register-login-light-text-color);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      box-sizing: border-box; /* Ensure padding is included in height calculation */
    }

    .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 25px !important; /* Expanded padding */
      opacity: 1;
    }

    .page-8k8-com-register-login__faq-answer p {
      margin: 0;
      font-size: 1em;
      color: var(--page-8k8-com-register-login-text-color);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

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

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

      .page-8k8-com-register-login__button {
        width: 100%;
        max-width: 300px; /* Limit button width on small screens */
        margin-bottom: 10px;
      }

      .page-8k8-com-register-login__hero-cta {
        flex-direction: column;
        align-items: center;
      }

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

      .page-8k8-com-register-login__steps-section,
      .page-8k8-com-register-login__features-section,
      .page-8k8-com-register-login__promo-section,
      .page-8k8-com-register-login__faq-section,
      .page-8k8-com-register-login__final-cta-section {
        padding: 40px 15px;
      }

      .page-8k8-com-register-login__steps-grid,
      .page-8k8-com-register-login__features-grid {
        grid-template-columns: 1fr; /* Single column layout */
      }

      .page-8k8-com-register-login__step-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 10px !important; /* Adjust padding for mobile */
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-register-login__step-list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 25px !important; /* Adjust padding for checkmark */
        margin-left: 0 !important;
        margin-right: 0 !important;
        font-size: 0.95em;
      }

      .page-8k8-com-register-login__promo-content {
        flex-direction: column;
      }

      .page-8k8-com-register-login__promo-image {
        order: -1; /* Image above text on mobile */
      }

      .page-8k8-com-register-login__final-cta-buttons {
        flex-direction: column;
        align-items: center;
      }

      /* Image responsiveness */
      .page-8k8-com-register-login__hero-image-wrapper img,
      .page-8k8-com-register-login__step-card img,
      .page-8k8-com-register-login__feature-card img,
      .page-8k8-com-register-login__promo-image img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-register-login__hero-image-wrapper,
      .page-8k8-com-register-login__step-card,
      .page-8k8-com-register-login__feature-card,
      .page-8k8-com-register-login__promo-image {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-register-login__faq-question,
      .page-8k8-com-register-login__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

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