
    :root {
      --8k8-primary: #FFD700; /* Gold */
      --8k8-secondary: #000080; /* Navy Blue */
      --8k8-accent: #FF4500; /* OrangeRed */
      --8k8-text-light: #f8f8f8;
      --8k8-text-dark: #333333;
      --8k8-background-dark: #1a1a2e;
      --8k8-background-light: #ffffff;
      --8k8-border-color: #4a4a6e;
    }

    .page-8k8-login-account {
      font-family: 'Arial', sans-serif;
      color: var(--8k8-text-light);
      background-color: var(--8k8-background-dark);
      line-height: 1.6;
      padding-top: 10px; /* Small aesthetic top padding, assuming body handles header offset */
    }

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

    .page-8k8-login-account__section--light {
      background-color: var(--8k8-background-light);
      color: var(--8k8-text-dark);
    }

    .page-8k8-login-account__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:8k8,login,account,dashboard]') center center no-repeat;
      background-size: cover;
      text-align: center;
      padding: 100px 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 500px;
    }

    .page-8k8-login-account__hero-title {
      font-size: 3.5em;
      color: var(--8k8-primary);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-login-account__hero-subtitle {
      font-size: 1.5em;
      color: var(--8k8-text-light);
      max-width: 800px;
      margin-bottom: 40px;
    }

    .page-8k8-login-account__button {
      background-color: var(--8k8-accent);
      color: var(--8k8-text-light);
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* Ensure no underline if it were an anchor */
      display: inline-block;
      text-align: center;
    }

    .page-8k8-login-account__button:hover {
      background-color: #e63900;
      transform: translateY(-2px);
    }

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

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

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

    .page-8k8-login-account__feature-card {
      background-color: var(--8k8-secondary);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--8k8-border-color);
    }

    .page-8k8-login-account__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-login-account__feature-icon {
      width: 100px;
      height: auto;
      margin-bottom: 20px;
    }

    .page-8k8-login-account__feature-title {
      font-size: 1.5em;
      color: var(--8k8-primary);
      margin-bottom: 15px;
    }

    .page-8k8-login-account__feature-description {
      color: var(--8k8-text-light);
      font-size: 0.95em;
    }

    .page-8k8-login-account__image-container {
      margin: 40px auto;
      max-width: 800px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-login-account__image {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .page-8k8-login-account__steps-list {
      list-style: none;
      padding: 0;
      margin: 40px 0;
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-login-account__step-item {
      background-color: var(--8k8-secondary);
      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-left: 5px solid var(--8k8-primary);
      box-sizing: border-box;
      width: 100%;
    }

    .page-8k8-login-account__step-number {
      font-size: 2em;
      font-weight: bold;
      color: var(--8k8-primary);
      flex-shrink: 0;
      line-height: 1;
    }

    .page-8k8-login-account__step-content {
      flex-grow: 1;
    }

    .page-8k8-login-account__step-title {
      font-size: 1.3em;
      color: var(--8k8-text-light);
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-8k8-login-account__step-description {
      font-size: 0.95em;
      color: var(--8k8-text-light);
    }

    .page-8k8-login-account__text-block {
      font-size: 1.1em;
      margin-bottom: 20px;
      text-align: center;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
      color: var(--8k8-text-light);
    }

    .page-8k8-login-account__faq-section {
      background-color: var(--8k8-background-light);
      color: var(--8k8-text-dark);
    }

    .page-8k8-login-account__faq-item {
      margin-bottom: 15px;
      border: 1px solid var(--8k8-border-color);
      border-radius: 8px;
      overflow: hidden;
      background-color: #f0f0f0;
      box-sizing: border-box;
      width: 100%;
    }

    .page-8k8-login-account__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: var(--8k8-secondary);
      color: var(--8k8-text-light);
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      border-bottom: 1px solid var(--8k8-border-color);
      transition: background-color 0.3s ease;
    }

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

    .page-8k8-login-account__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: var(--8k8-primary);
    }

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

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

    .page-8k8-login-account__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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: var(--8k8-background-light);
      color: var(--8k8-text-dark);
      border-top: none;
    }

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

    .page-8k8-login-account__faq-answer p {
      margin: 0;
      padding: 0;
      font-size: 0.95em;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-login-account__hero-title {
        font-size: 2.5em;
      }

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

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

      .page-8k8-login-account__section {
        padding: 40px 15px;
      }

      .page-8k8-login-account__grid {
        grid-template-columns: 1fr;
      }

      .page-8k8-login-account__feature-card {
        padding: 25px;
      }

      .page-8k8-login-account__feature-title {
        font-size: 1.3em;
      }

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

      .page-8k8-login-account__step-number {
        margin-bottom: 10px;
      }

      .page-8k8-login-account__steps-list {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-8k8-login-account__text-block {
        font-size: 1em;
      }

      .page-8k8-login-account__faq-question {
        font-size: 1em;
        padding: 12px 15px;
      }

      .page-8k8-login-account__faq-question h3 {
        font-size: 1.1em;
      }

      .page-8k8-login-account__faq-answer {
        padding: 0 15px;
      }

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

      .page-8k8-login-account__image-container {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

      .page-8k8-login-account__image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-8k8-login-account__step-description,
      .page-8k8-login-account__feature-description,
      .page-8k8-login-account__faq-answer p {
        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: 2em;
      }

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

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

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