
    /* Page-specific CSS for 8k8 Login Account */
    .page-8k8-login-account {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-top: var(--header-offset, 122px); /* Fallback if body padding is not applied by shared.css */
    }

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

    .page-8k8-login-account__hero-section {
      position: relative;
      color: #fff;
      text-align: center;
      padding: 100px 20px 80px; /* Adjusted padding-top to avoid double offset */
      background-color: #000; /* Fallback for image */
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 450px;
      box-sizing: border-box;
    }

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

    .page-8k8-login-account__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-8k8-login-account__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: #FFD700; /* Gold color for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-login-account__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #eee;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }

    .page-8k8-login-account__button {
      display: inline-block;
      background-color: #007bff; /* Blue for call to action */
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

    .page-8k8-login-account__button:hover {
      background-color: #0056b3;
    }

    .page-8k8-login-account__section {
      padding: 60px 0;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-8k8-login-account__section--dark {
      background-color: #222;
      color: #eee;
    }

    .page-8k8-login-account__section-title {
      font-size: 2.5em;
      color: #333;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-8k8-login-account__section-title--dark {
      color: #FFD700;
    }

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

    .page-8k8-login-account__content-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: #f9f9f9;
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

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

    .page-8k8-login-account__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-login-account__feature-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 15px;
    }

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

    .page-8k8-login-account__promo-banner {
      background-color: #FFD700;
      color: #333;
      padding: 40px 20px;
      text-align: center;
      border-radius: 8px;
      margin-bottom: 40px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

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

    .page-8k8-login-account__promo-text {
      font-size: 1.1em;
      margin-bottom: 25px;
      color: #555;
    }

    .page-8k8-login-account__promo-link {
      background-color: #000;
      color: #FFD700;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      display: inline-block;
      font-size: 1em;
    }

    .page-8k8-login-account__promo-link:hover {
      background-color: #333;
    }

    .page-8k8-login-account__faq-section {
      padding: 60px 0;
      background-color: #f0f2f5;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      box-sizing: border-box;
    }

    .page-8k8-login-account__faq-title {
      font-size: 2.5em;
      color: #333;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

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

    .page-8k8-login-account__faq-list {
      max-width: 800px;
      margin: 0 auto;
      list-style: none;
      padding: 0;
      box-sizing: border-box;
    }

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

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

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

    .page-8k8-login-account__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Crucial for click event on parent */
      color: #007bff;
    }

    .page-8k8-login-account__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click event on parent */
      line-height: 1; /* Ensures + and - are vertically centered */
    }

    .page-8k8-login-account__faq-item.active .page-8k8-login-account__faq-toggle {
      transform: rotate(45deg); /* Visually change + to X or a dash */
      color: #dc3545; /* Red for active state */
    }
    .page-8k8-login-account__faq-item.active .page-8k8-login-account__faq-question {
        background-color: #e0f2f7;
    }


    .page-8k8-login-account__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.3s ease;
      color: #555;
      font-size: 1em;
      box-sizing: border-box;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-8k8-login-account__container {
        padding: 15px;
      }

      .page-8k8-login-account__hero-section {
        padding: 80px 15px 60px;
        min-height: 350px;
      }

      .page-8k8-login-account__hero-title {
        font-size: 2.2em;
      }

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

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

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

      .page-8k8-login-account__section-title,
      .page-8k8-login-account__faq-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-8k8-login-account__content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

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

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

      .page-8k8-login-account__feature-icon {
        width: 60px;
        height: 60px;
      }

      .page-8k8-login-account__promo-banner {
        padding: 30px 15px;
      }

      .page-8k8-login-account__promo-title {
        font-size: 1.6em;
      }

      .page-8k8-login-account__promo-text {
        font-size: 0.95em;
      }

      .page-8k8-login-account__promo-link {
        padding: 10px 20px;
        font-size: 0.9em;
      }

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

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

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

      /* List item responsiveness */
      .page-8k8-login-account__content-grid > div { /* Targeting direct children of the grid, which are feature cards */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-login-account__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Adjusted padding for very small screens */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-login-account__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .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: 1.8em;
      }
      .page-8k8-login-account__section-title,
      .page-8k8-login-account__faq-title {
        font-size: 1.8em;
      }
      .page-8k8-login-account__promo-title {
        font-size: 1.4em;
      }
    }
  