
    .page-www-8k8-com-login-register {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      overflow-x: hidden;
      padding-top: 10px; /* Minimal padding-top for hero/first section as body handles header offset */
    }

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

    .page-www-8k8-com-login-register__hero-section {
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 40px;
    }

    .page-www-8k8-com-login-register__hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: rgba(255, 255, 255, 0.1);
      transform: rotate(45deg);
      pointer-events: none;
    }

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

    .page-www-8k8-com-login-register__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-www-8k8-com-login-register__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .page-www-8k8-com-login-register__action-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .page-www-8k8-com-login-register__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #ffc107;
      color: #333;
      border: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

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

    .page-www-8k8-com-login-register__section {
      background-color: #fff;
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-www-8k8-com-login-register__section-title {
      font-size: 2em;
      color: #007bff;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-www-8k8-com-login-register__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #ffc107;
      border-radius: 2px;
    }

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

    .page-www-8k8-com-login-register__card {
      background-color: #f0f8ff;
      border-radius: 8px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-www-8k8-com-login-register__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-www-8k8-com-login-register__card-icon {
      margin-bottom: 15px;
      width: 200px; /* Min size */
      height: 200px; /* Min size */
      object-fit: contain;
      border-radius: 8px;
      max-width: 100%;
      height: auto;
    }

    .page-www-8k8-com-login-register__card-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-www-8k8-com-login-register__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }

    .page-www-8k8-com-login-register__list-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
      padding: 10px 0;
      border-bottom: 1px dashed #eee;
      box-sizing: border-box; /* Required for list items */
    }

    .page-www-8k8-com-login-register__list-item:last-child {
      border-bottom: none;
    }

    .page-www-8k8-com-login-register__list-icon {
      color: #ffc107;
      font-size: 1.2em;
      margin-right: 10px;
      flex-shrink: 0;
    }

    .page-www-8k8-com-login-register__image-full {
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin-top: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-www-8k8-com-login-register__faq-section {
      background-color: #fff;
      padding: 40px 20px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-www-8k8-com-login-register__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-www-8k8-com-login-register__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-www-8k8-com-login-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      background-color: #f0f8ff;
      border-radius: 5px;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      font-weight: bold;
      color: #007bff;
    }

    .page-www-8k8-com-login-register__faq-question:hover {
      background-color: #e6f2ff;
    }

    .page-www-8k8-com-login-register__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click */
      color: #007bff;
    }

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

    .page-www-8k8-com-login-register__faq-item.active .page-www-8k8-com-login-register__faq-toggle {
      transform: rotate(45deg); /* Plus to X/Minus */
    }

    .page-www-8k8-com-login-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      background-color: #ffffff;
      color: #555;
      border-radius: 0 0 5px 5px;
    }

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

    .page-www-8k8-com-login-register__info-text {
      text-align: center;
      margin-top: 30px;
      font-size: 1.1em;
      color: #666;
    }

    .page-www-8k8-com-login-register__promo-link {
      color: #007bff;
      text-decoration: underline;
      font-weight: bold;
    }

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

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

      .page-www-8k8-com-login-register__action-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-www-8k8-com-login-register__button {
        width: 100%;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-www-8k8-com-login-register__section {
        padding: 30px 15px;
      }

      .page-www-8k8-com-login-register__section-title {
        font-size: 1.8em;
      }

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

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

      .page-www-8k8-com-login-register__list-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
        width: 100% !important; /* Enforce full width */
        max-width: 100% !important; /* Enforce full width */
        box-sizing: border-box !important; /* Ensure padding/border included */
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important; /* Handle long text */
        overflow-wrap: break-word !important;
        word-break: break-word !important; /* For long keywords */
      }

      .page-www-8k8-com-login-register__list-icon {
        margin-bottom: 5px;
        margin-right: 0;
      }

      .page-www-8k8-com-login-register__list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Adjust padding for mobile */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-www-8k8-com-login-register__image-full {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-www-8k8-com-login-register__card-icon {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-www-8k8-com-login-register__faq-question {
        padding: 12px;
        font-size: 1em;
      }

      .page-www-8k8-com-login-register__faq-question h3 {
        font-size: 1em;
      }

      .page-www-8k8-com-login-register__faq-answer {
        padding: 15px 12px;
      }

      .page-www-8k8-com-login-register__faq-item.active .page-www-8k8-com-login-register__faq-answer {
        padding: 15px 12px !important;
      }
    }
  