
    :root {
      --page-primary-color: #f7b32b; /* A vibrant gold/orange for 8k8 */
      --page-secondary-color: #333;
      --page-text-color: #fff;
      --page-dark-bg: #1a1a1a;
      --page-light-bg: #2a2a2a;
      --page-accent-color: #e0a10c;
    }

    .page-www-8k8-com-login {
      font-family: 'Arial', sans-serif;
      color: var(--page-text-color);
      background-color: var(--page-dark-bg);
      line-height: 1.6;
    }

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

    .page-www-8k8-com-login__hero-section {
      position: relative;
      background-color: var(--page-light-bg);
      padding: 10px 0 60px 0; /* Adjusted padding-top to account for body padding */
      text-align: center;
      overflow: hidden;
      border-bottom: 5px solid var(--page-primary-color);
    }

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

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

    .page-www-8k8-com-login__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      color: var(--page-primary-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-www-8k8-com-login__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--page-text-color);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

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

    .page-www-8k8-com-login__button:hover {
      background-color: var(--page-accent-color);
      transform: translateY(-2px);
    }

    .page-www-8k8-com-login__section {
      padding: 60px 20px;
      background-color: var(--page-dark-bg);
      text-align: center;
    }

    .page-www-8k8-com-login__section--light {
      background-color: var(--page-light-bg);
    }

    .page-www-8k8-com-login__section-title {
      font-size: 2.5em;
      color: var(--page-primary-color);
      margin-bottom: 40px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-www-8k8-com-login__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      text-align: left;
    }

    .page-www-8k8-com-login__card {
      background-color: var(--page-light-bg);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-primary-color);
    }

    .page-www-8k8-com-login__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    }

    .page-www-8k8-com-login__card-icon {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      border-radius: 8px;
      object-fit: cover;
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
      height: auto;
    }

    .page-www-8k8-com-login__card-title {
      font-size: 1.8em;
      color: var(--page-primary-color);
      margin-bottom: 15px;
    }

    .page-www-8k8-com-login__card-description {
      font-size: 1em;
      color: var(--page-text-color);
    }

    .page-www-8k8-com-login__image-container {
      margin: 40px auto;
      max-width: 800px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-www-8k8-com-login__image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
      height: auto;
      object-fit: cover;
    }

    .page-www-8k8-com-login__faq-section {
      padding: 60px 20px;
      background-color: var(--page-dark-bg);
      text-align: center;
    }

    .page-www-8k8-com-login__faq-list {
      max-width: 900px;
      margin: 0 auto;
      list-style: none;
      padding: 0;
      text-align: left;
    }

    .page-www-8k8-com-login__faq-item {
      background-color: var(--page-light-bg);
      border: 1px solid var(--page-primary-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .page-www-8k8-com-login__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--page-secondary-color);
      color: var(--page-primary-color);
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

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

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

    .page-www-8k8-com-login__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
    }

    .page-www-8k8-com-login__faq-item.active .page-www-8k8-com-login__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' or similar, could also be '-' */
    }

    .page-www-8k8-com-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-text-color);
      opacity: 0;
    }

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

    .page-www-8k8-com-login__cta-section {
      padding: 80px 20px;
      background: linear-gradient(135deg, var(--page-dark-bg), #000);
      text-align: center;
      border-top: 5px solid var(--page-primary-color);
    }

    .page-www-8k8-com-login__cta-title {
      font-size: 2.8em;
      color: var(--page-primary-color);
      margin-bottom: 25px;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    }

    .page-www-8k8-com-login__cta-description {
      font-size: 1.3em;
      color: var(--page-text-color);
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

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

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

      .page-www-8k8-com-login__section-title {
        font-size: 2em;
      }

      .page-www-8k8-com-login__card {
        padding: 20px;
      }

      .page-www-8k8-com-login__card-title {
        font-size: 1.5em;
      }

      .page-www-8k8-com-login__card-icon {
        width: 80px;
        height: 80px;
      }

      .page-www-8k8-com-login__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

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

      .page-www-8k8-com-login__faq-answer {
        padding: 0 20px;
      }

      .page-www-8k8-com-login__faq-item.active .page-www-8k8-com-login__faq-answer {
        padding: 15px 20px !important;
      }

      .page-www-8k8-com-login__cta-title {
        font-size: 2em;
      }

      .page-www-8k8-com-login__cta-description {
        font-size: 1.1em;
      }

      .page-www-8k8-com-login__grid {
        grid-template-columns: 1fr;
      }

      /* List item responsive adjustments */
      .page-www-8k8-com-login__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-www-8k8-com-login__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-www-8k8-com-login__faq-answer p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

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

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