
    :root {
      --page-primary-color: #ffcc00; /* Gold/Yellow */
      --page-secondary-color: #333333; /* Dark Grey */
      --page-text-color: #f0f0f0; /* Light Grey */
      --page-background-color: #1a1a1a; /* Dark background */
      --page-accent-color: #007bff; /* Blue for links/buttons */
    }

    .page-8k8-login-account {
      font-family: 'Arial', sans-serif;
      color: var(--page-text-color);
      background-color: var(--page-background-color);
      line-height: 1.6;
      padding-bottom: 40px;
    }

    .page-8k8-login-account__hero-section {
      position: relative;
      padding: 10px 20px 80px; /* Added 10px top padding for offset */
      background-color: var(--page-secondary-color);
      color: #ffffff;
      text-align: center;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 400px;
      box-sizing: border-box;
    }

    .page-8k8-login-account__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box;
    }

    .page-8k8-login-account__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
      box-sizing: border-box;
    }

    .page-8k8-login-account__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      color: var(--page-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      font-weight: bold;
    }

    .page-8k8-login-account__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-8k8-login-account__button-wrapper {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .page-8k8-login-account__main-button {
      display: inline-block;
      padding: 15px 30px;
      background-color: var(--page-primary-color);
      color: var(--page-secondary-color);
      font-size: 1.1em;
      font-weight: bold;
      border-radius: 8px;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-8k8-login-account__main-button:hover {
      background-color: #ffd700;
      transform: translateY(-3px);
    }

    .page-8k8-login-account__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-8k8-login-account__section:nth-of-type(even) {
      background-color: #222222;
    }

    .page-8k8-login-account__section-title {
      font-size: 2.5em;
      color: var(--page-primary-color);
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
    }

    .page-8k8-login-account__content-text {
      font-size: 1.1em;
      margin-bottom: 25px;
      text-align: justify;
      color: #e0e0e0;
    }

    .page-8k8-login-account__steps-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      margin-top: 40px;
    }

    .page-8k8-login-account__step-item {
      background-color: #2a2a2a;
      border: 1px solid var(--page-primary-color);
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      flex: 1 1 calc(33% - 40px);
      min-width: 280px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-8k8-login-account__step-item:hover {
      transform: translateY(-5px);
      background-color: #3a3a3a;
    }

    .page-8k8-login-account__step-number {
      font-size: 3em;
      color: var(--page-primary-color);
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1;
    }

    .page-8k8-login-account__step-title {
      font-size: 1.5em;
      color: #ffffff;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-8k8-login-account__step-text {
      font-size: 1em;
      color: #cccccc;
    }

    .page-8k8-login-account__image-wrapper {
      margin: 40px auto;
      max-width: 800px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
      box-sizing: border-box;
    }

    .page-8k8-login-account__image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      max-width: 100%; /* Responsive image */
      box-sizing: border-box;
    }

    .page-8k8-login-account__feature-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      list-style: none;
      padding: 0;
      margin-top: 40px;
    }

    .page-8k8-login-account__feature-item {
      background-color: #2a2a2a;
      border-left: 5px solid var(--page-primary-color);
      padding: 25px;
      border-radius: 8px;
      flex: 1 1 calc(48% - 20px);
      min-width: 300px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      box-sizing: border-box;
    }

    .page-8k8-login-account__feature-item h3 {
      color: #ffffff;
      font-size: 1.3em;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-8k8-login-account__feature-item p {
      color: #cccccc;
      font-size: 0.95em;
    }

    .page-8k8-login-account__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
    }

    .page-8k8-login-account__faq-item {
      background-color: #2a2a2a;
      border-bottom: 1px solid #444444;
      margin-bottom: 10px;
      border-radius: 8px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-8k8-login-account__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      background-color: #333333;
      color: #ffffff;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
    }

    .page-8k8-login-account__faq-question:hover {
      background-color: #444444;
    }

    .page-8k8-login-account__faq-question h3 {
      margin: 0;
      color: inherit;
      pointer-events: none; /* Prevent h3 from blocking click */
      font-size: 1.1em;
      font-weight: bold;
    }

    .page-8k8-login-account__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click */
      color: var(--page-primary-color);
      font-weight: bold;
    }

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

    .page-8k8-login-account__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #2a2a2a;
      color: #cccccc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      font-size: 0.95em;
    }

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

    .page-8k8-login-account__cta-section {
      text-align: center;
      padding: 80px 20px;
      background-color: #222222;
      box-sizing: border-box;
    }

    .page-8k8-login-account__cta-title {
      font-size: 2.8em;
      color: var(--page-primary-color);
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-8k8-login-account__cta-description {
      font-size: 1.2em;
      color: #e0e0e0;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-login-account__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-login-account__hero-description {
        font-size: 1.2em;
      }
      .page-8k8-login-account__section-title,
      .page-8k8-login-account__cta-title {
        font-size: 2.2em;
      }
      .page-8k8-login-account__step-item,
      .page-8k8-login-account__feature-item {
        flex: 1 1 calc(48% - 20px);
      }
    }

    @media (max-width: 768px) {
      .page-8k8-login-account__hero-section {
        padding-top: var(--header-offset, 122px); /* Fallback if body padding is not applied by shared.css */
        min-height: 350px;
        padding-bottom: 50px;
      }
      .page-8k8-login-account__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-login-account__hero-description {
        font-size: 1em;
      }
      .page-8k8-login-account__main-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-login-account__section {
        padding: 40px 15px;
      }
      .page-8k8-login-account__section-title,
      .page-8k8-login-account__cta-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }
      .page-8k8-login-account__content-text {
        font-size: 1em;
      }
      .page-8k8-login-account__steps-container {
        gap: 20px;
      }
      .page-8k8-login-account__step-item {
        flex: 1 1 100%;
        max-width: 100% !important; /* List item responsive */
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-login-account__step-number {
        font-size: 2.5em;
      }
      .page-8k8-login-account__step-title {
        font-size: 1.3em;
      }
      .page-8k8-login-account__feature-list {
        gap: 20px;
      }
      .page-8k8-login-account__feature-item {
        flex: 1 1 100%;
        max-width: 100% !important; /* List item responsive */
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 20px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-8k8-login-account__feature-item h3 {
        font-size: 1.2em;
      }
      .page-8k8-login-account__feature-item p {
        font-size: 0.9em;
      }
      .page-8k8-login-account__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }
      .page-8k8-login-account__faq-question h3 {
        font-size: 1em;
      }
      .page-8k8-login-account__faq-answer {
        padding: 15px 20px;
        font-size: 0.9em;
      }
      .page-8k8-login-account__cta-section {
        padding: 50px 15px;
      }
      .page-8k8-login-account__cta-description {
        font-size: 1em;
      }
      .page-8k8-login-account__image-wrapper {
        margin: 30px auto;
      }
      .page-8k8-login-account__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-login-account__hero-background {
        max-width: 100% !important;
        height: 100% !important;
        box-sizing: border-box !important;
      }
      .page-8k8-login-account__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }
      .page-8k8-login-account__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-login-account__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-login-account__hero-description {
        font-size: 0.9em;
      }
      .page-8k8-login-account__button-wrapper {
        flex-direction: column;
        gap: 15px;
      }
      .page-8k8-login-account__main-button {
        width: 100%;
      }
      .page-8k8-login-account__section-title,
      .page-8k8-login-account__cta-title {
        font-size: 1.5em;
      }
    }
  