
    /* CSS for page-www-8k8-com-login-2 */
    :root {
      --primary-color: #e44d26; /* A vibrant orange/red */
      --secondary-color: #333;
      --accent-color: #f0ad4e;
      --background-dark: #1a1a1a;
      --background-light: #2c2c2c;
      --text-light: #f8f8f8;
      --text-dark: #eee;
      --border-color: #555;
    }

    .page-www-8k8-com-login-2 {
      font-family: 'Arial', sans-serif;
      color: var(--text-dark);
      background-color: var(--background-dark);
      line-height: 1.6;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    /* Fixed navigation bar offset */
    .page-www-8k8-com-login-2__hero-section {
      padding-top: 10px; /* Small top padding, assuming body has main offset */
    }

    .page-www-8k8-com-login-2__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-www-8k8-com-login-2__section--dark {
      background-color: var(--background-light);
    }

    .page-www-8k8-com-login-2__hero-section {
      position: relative;
      background-color: var(--background-dark);
      color: var(--text-light);
      padding: 60px 20px;
      text-align: center;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 400px;
    }

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

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

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

    .page-www-8k8-com-login-2__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--text-light);
    }

    .page-www-8k8-com-login-2__button-group {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .page-www-8k8-com-login-2__button {
      background-color: var(--primary-color);
      color: var(--text-light);
      padding: 12px 25px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none; /* For external links */
      display: inline-block;
      text-align: center;
    }

    .page-www-8k8-com-login-2__button:hover {
      background-color: #c73e1f;
      transform: translateY(-2px);
    }

    .page-www-8k8-com-login-2__secondary-button {
      background-color: transparent;
      border: 2px solid var(--primary-color);
      color: var(--primary-color);
    }

    .page-www-8k8-com-login-2__secondary-button:hover {
      background-color: var(--primary-color);
      color: var(--text-light);
    }

    .page-www-8k8-com-login-2__title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--primary-color);
    }

    .page-www-8k8-com-login-2__text {
      font-size: 1.1em;
      margin-bottom: 20px;
      color: var(--text-dark);
    }

    .page-www-8k8-com-login-2__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-www-8k8-com-login-2__card {
      background-color: var(--background-light);
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      text-align: left;
      border: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-www-8k8-com-login-2__card-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .page-www-8k8-com-login-2__card-title {
      font-size: 1.5em;
      color: var(--primary-color);
      margin-bottom: 10px;
      text-align: center;
    }

    .page-www-8k8-com-login-2__card-description {
      color: var(--text-dark);
      text-align: center;
    }

    .page-www-8k8-com-login-2__steps {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }

    .page-www-8k8-com-login-2__step-item {
      background-color: var(--background-light);
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      max-width: 600px;
      width: 100%;
      text-align: left;
      display: flex;
      align-items: flex-start;
      gap: 15px;
      border: 1px solid var(--border-color);
      box-sizing: border-box; /* Required for list items */
    }

    .page-www-8k8-com-login-2__step-number {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--primary-color);
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid var(--primary-color);
      border-radius: 50%;
    }

    .page-www-8k8-com-login-2__step-content {
      flex-grow: 1;
    }

    .page-www-8k8-com-login-2__step-title {
      font-size: 1.3em;
      color: var(--primary-color);
      margin-bottom: 5px;
    }

    .page-www-8k8-com-login-2__provider-logo {
      width: 150px; /* Example size */
      height: 80px; /* Example size */
      object-fit: contain;
      margin: 10px;
      transition: transform 0.3s ease;
    }

    .page-www-8k8-com-login-2__provider-logo:hover {
      transform: scale(1.05);
    }

    .page-www-8k8-com-login-2__logo-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .page-www-8k8-com-login-2__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .page-www-8k8-com-login-2__faq-list {
      margin-top: 30px;
      text-align: left;
    }

    .page-www-8k8-com-login-2__faq-item {
      background-color: var(--background-light);
      border: 1px solid var(--border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page-www-8k8-com-login-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      background-color: #3a3a3a;
      transition: background-color 0.3s ease;
    }

    .page-www-8k8-com-login-2__faq-question:hover {
      background-color: #4a4a4a;
    }

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

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

    .page-www-8k8-com-login-2__faq-item.active .page-www-8k8-com-login-2__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or '-' */
    }

    .page-www-8k8-com-login-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      color: var(--text-dark);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

    .page-www-8k8-com-login-2__faq-item.active .page-www-8k8-com-login-2__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px !important; /* Updated padding */
      opacity: 1;
    }

    /* Floating Login/Register Buttons */
    .page-www-8k8-com-login-2__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      background-color: rgba(0, 0, 0, 0.8);
      padding: 10px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .page-www-8k8-com-login-2__floating-buttons .page-www-8k8-com-login-2__button {
      padding: 10px 20px;
      font-size: 1em;
      white-space: nowrap;
    }

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

      .page-www-8k8-com-login-2__hero-subtitle {
        font-size: 1em;
      }

      .page-www-8k8-com-login-2__title {
        font-size: 2em;
      }

      .page-www-8k8-com-login-2__text {
        font-size: 0.95em;
      }

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

      .page-www-8k8-com-login-2__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        max-width: 100% !important; /* Ensure full width on mobile */
        width: 100% !important; /* Required for list items */
        box-sizing: border-box !important; /* Required for list items */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important; /* Text wrapping */
        overflow-wrap: break-word !important; /* Text wrapping */
        word-break: break-word !important; /* Text wrapping for long words */
      }

      .page-www-8k8-com-login-2__step-number {
        margin-bottom: 10px;
      }

      .page-www-8k8-com-login-2__faq-question {
        padding: 12px 15px;
      }

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

      .page-www-8k8-com-login-2__faq-answer {
        padding: 0 15px; /* Adjust padding for mobile */
      }

      .page-www-8k8-com-login-2__faq-item.active .page-www-8k8-com-login-2__faq-answer {
        padding: 15px !important; /* Adjust padding for mobile */
      }

      .page-www-8k8-com-login-2__floating-buttons {
        width: calc(100% - 40px);
        bottom: 10px;
        flex-wrap: wrap;
        justify-content: center;
      }

      .page-www-8k8-com-login-2__floating-buttons .page-www-8k8-com-login-2__button {
        flex-grow: 1;
        min-width: 120px;
      }
      /* Image responsiveness */
      .page-www-8k8-com-login-2__card-image,
      .page-www-8k8-com-login-2__provider-logo,
      .page-www-8k8-com-login-2__hero-background-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-www-8k8-com-login-2__hero-section,
      .page-www-8k8-com-login-2__section {
        padding-left: 15px;
        padding-right: 15px;
      }
    }

    @media (max-width: 480px) {
      .page-www-8k8-com-login-2__hero-title {
        font-size: 1.8em;
      }
      .page-www-8k8-com-login-2__button-group {
        flex-direction: column;
      }
      .page-www-8k8-com-login-2__button {
        width: 100%;
      }
    }
  