
    :root {
      --page-primary-color: #ffcc00; /* Gold/Yellow */
      --page-secondary-color: #333333; /* Dark Grey */
      --page-text-color: #ffffff; /* White */
      --page-dark-bg: #1a1a1a; /* Very Dark Grey */
      --page-light-bg: #2a2a2a; /* Slightly Lighter Dark Grey */
      --page-accent-color: #ff3366; /* Red-Pink for highlights */
    }

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

    .page-8k8-com-login__hero-section {
      position: relative;
      padding: 10px 20px 80px 20px; /* Adjusted padding-top for header offset */
      text-align: center;
      background: var(--page-dark-bg);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 500px;
    }

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

    .page-8k8-com-login__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 10px;
    }

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

    .page-8k8-com-login__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--page-text-color);
    }

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

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

    .page-8k8-com-login__section {
      padding: 60px 20px;
      text-align: center;
      background-color: var(--page-light-bg);
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-8k8-com-login__section:nth-of-type(even) {
      background-color: var(--page-dark-bg);
    }

    .page-8k8-com-login__section-title {
      font-size: 2.5em;
      color: var(--page-primary-color);
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .page-8k8-com-login__features-grid,
    .page-8k8-com-login__steps-list,
    .page-8k8-com-login__providers-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-8k8-com-login__feature-item,
    .page-8k8-com-login__step-item,
    .page-8k8-com-login__provider-item {
      background-color: var(--page-secondary-color);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      flex: 1 1 calc(33% - 40px);
      min-width: 280px;
      box-sizing: border-box;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-8k8-com-login__feature-item:hover,
    .page-8k8-com-login__step-item:hover,
    .page-8k8-com-login__provider-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    .page-8k8-com-login__feature-icon {
      width: 250px; /* Min size 200x200 */
      height: auto;
      margin-bottom: 20px;
      border-radius: 5px;
    }

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

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

    .page-8k8-com-login__step-number {
      font-size: 2.5em;
      color: var(--page-accent-color);
      margin-bottom: 15px;
      font-weight: bold;
    }

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

    .page-8k8-com-login__step-description {
      font-size: 1.1em;
      color: var(--page-text-color);
    }

    .page-8k8-com-login__provider-logo {
      width: 250px; /* Min size 200x200 */
      height: auto;
      object-fit: contain;
      margin-bottom: 15px;
      border-radius: 5px;
    }

    .page-8k8-com-login__provider-name {
      font-size: 1.2em;
      color: var(--page-primary-color);
      font-weight: bold;
    }

    .page-8k8-com-login__promotions-content {
      max-width: 800px;
      margin: 0 auto 40px auto;
      font-size: 1.1em;
      color: var(--page-text-color);
    }

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

    .page-8k8-com-login__faq-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
    }

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

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

    .page-8k8-com-login__faq-question:hover {
      background-color: var(--page-accent-color);
      color: var(--page-text-color);
    }

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

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

    .page-8k8-com-login__faq-item.active .page-8k8-com-login__faq-toggle {
      transform: rotate(45deg); /* For '-' symbol, if '+' is used as base */
    }

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

    .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;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-8k8-com-login__feature-item,
      .page-8k8-com-login__step-item,
      .page-8k8-com-login__provider-item {
        flex: 1 1 calc(50% - 30px);
      }
    }

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

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

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

      .page-8k8-com-login__feature-item,
      .page-8k8-com-login__step-item,
      .page-8k8-com-login__provider-item {
        flex: 1 1 100%;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding: 20px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-8k8-com-login__features-grid,
      .page-8k8-com-login__steps-list,
      .page-8k8-com-login__providers-grid {
        gap: 20px;
        padding: 0 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-8k8-com-login__feature-icon,
      .page-8k8-com-login__provider-logo {
        width: 100%;
        max-width: 300px; /* Constrain max width for smaller images */
        height: auto;
        margin: 0 auto 20px auto;
        box-sizing: border-box !important;
      }
      
      .page-8k8-com-login__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }

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

      .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__section-title {
        font-size: 1.8em;
      }

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