
    /* Base styles for the specific page */
    .page-8k8-com-login {
      font-family: 'Arial', sans-serif;
      color: #e0e0e0;
      background-color: #1a1a1a;
      line-height: 1.6;
      padding-bottom: 40px;
    }

    .page-8k8-com-login__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-8k8-com-login__section {
      padding: 60px 0;
      text-align: center;
      background-color: #222222;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-login__section--dark {
      background-color: #1a1a1a;
    }

    .page-8k8-com-login__hero-section {
      padding-top: 10px; /* Offset for fixed header, actual padding handled by body */
      padding-bottom: 80px;
      background-color: #0d0d0d;
      text-align: center;
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .page-8k8-com-login__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      padding: 40px 15px;
    }

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

    .page-8k8-com-login__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-8k8-com-login__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #ffcc00;
      color: #1a1a1a;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1.1em;
    }

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

    .page-8k8-com-login__image-wrapper {
      margin: 40px auto;
      max-width: 100%;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      box-sizing: border-box; /* Crucial for responsive images */
    }

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

    .page-8k8-com-login__title {
      font-size: 2.5em;
      margin-bottom: 40px;
      color: #ffcc00;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com-login__subtitle {
      font-size: 1.8em;
      margin-bottom: 30px;
      color: #ffffff;
    }

    .page-8k8-com-login__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: #e0e0e0;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-8k8-com-login__list {
      list-style: none;
      padding: 0;
      margin: 40px auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-8k8-com-login__list-item {
      background-color: #2a2a2a;
      border-radius: 8px;
      padding: 25px;
      flex: 1;
      min-width: 280px;
      max-width: 380px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
      word-break: break-word; /* For long keywords */
    }

    .page-8k8-com-login__list-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-login__list-item-title {
      color: #ffcc00;
      font-size: 1.4em;
      margin-bottom: 15px;
    }

    .page-8k8-com-login__list-item-text {
      color: #cccccc;
      font-size: 1em;
    }

    .page-8k8-com-login__promo-link {
      color: #ffcc00;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-8k8-com-login__promo-link:hover {
      color: #e6b800;
      text-decoration: underline;
    }

    /* FAQ Section */
    .page-8k8-com-login__faq-section {
      background-color: #222222;
      padding: 60px 0;
      text-align: center;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

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

    .page-8k8-com-login__faq-item {
      background-color: #1a1a1a;
      border: 1px solid #333333;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: background-color 0.3s ease;
    }

    .page-8k8-com-login__faq-item:hover {
      background-color: #2a2a2a;
    }

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

    .page-8k8-com-login__faq-question:hover {
      color: #e6b800;
    }

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

    .page-8k8-com-login__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
    }

    .page-8k8-com-login__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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: 1em;
    }

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

    .page-8k8-com-login__faq-item.active .page-8k8-com-login__faq-toggle {
      transform: rotate(45deg); /* Plus to Minus visual effect */
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-login__hero-title {
        font-size: 2.8em;
      }
      .page-8k8-com-login__title {
        font-size: 2.2em;
      }
      .page-8k8-com-login__subtitle {
        font-size: 1.6em;
      }
      .page-8k8-com-login__list-item {
        max-width: 320px;
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-login__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-com-login__hero-subtitle {
        font-size: 1.1em;
      }
      .page-8k8-com-login__title {
        font-size: 1.8em;
      }
      .page-8k8-com-login__subtitle {
        font-size: 1.4em;
      }
      .page-8k8-com-login__section {
        padding: 40px 0;
      }
      .page-8k8-com-login__list {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px !important; /* Adjust padding for list container */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-com-login__list-item {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-com-login__image-wrapper {
        margin: 20px auto;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
      .page-8k8-com-login__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-8k8-com-login__faq-question,
      .page-8k8-com-login__faq-question h3 {
        font-size: 1.1em;
        padding: 18px 20px;
      }
      .page-8k8-com-login__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-com-login__faq-item.active .page-8k8-com-login__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-login__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-login__hero-subtitle {
        font-size: 1em;
      }
      .page-8k8-com-login__title {
        font-size: 1.5em;
      }
      .page-8k8-com-login__subtitle {
        font-size: 1.2em;
      }
      .page-8k8-com-login__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-com-login__text {
        font-size: 0.95em;
      }
    }
  