
    :root {
      --page-8k8-com-2-primary-color: #007bff; /* Blue */
      --page-8k8-com-2-secondary-color: #6c757d; /* Grey */
      --page-8k8-com-2-accent-color: #ffc107; /* Yellow */
      --page-8k8-com-2-dark-bg: #1a1a2e; /* Dark Blue */
      --page-8k8-com-2-light-text: #ffffff;
      --page-8k8-com-2-medium-text: #e0e0e0;
      --page-8k8-com-2-border-color: #333;
      --page-8k8-com-2-hover-color: #0056b3;
    }

    .page-8k8-com-2 {
      font-family: 'Arial', sans-serif;
      color: var(--page-8k8-com-2-light-text);
      background-color: var(--page-8k8-com-2-dark-bg);
      line-height: 1.6;
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

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

    .page-8k8-com-2__section {
      padding: 60px 0;
      text-align: center;
      background-color: var(--page-8k8-com-2-dark-bg);
    }

    .page-8k8-com-2__section--alt-bg {
      background-color: #2a2a4a; /* Slightly lighter dark blue */
    }

    .page-8k8-com-2__hero-section {
      padding-top: 10px; /* Decorative spacing below assumed body padding-top */
      padding-bottom: 60px;
      background: linear-gradient(135deg, #1a1a2e, #3a3a5e);
      color: var(--page-8k8-com-2-light-text);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      min-height: 500px;
    }

    .page-8k8-com-2__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      padding: 0 20px;
    }

    .page-8k8-com-2__hero-image-wrapper {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 1;
    }

    .page-8k8-com-2__hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      filter: brightness(0.7); /* Darken the image for better text contrast */
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-8k8-com-2__hero-title {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: var(--page-8k8-com-2-accent-color);
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-2__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: var(--page-8k8-com-2-medium-text);
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

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

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

    .page-8k8-com-2__section-title {
      font-size: 2.8em;
      margin-bottom: 40px;
      color: var(--page-8k8-com-2-accent-color);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-com-2__section-subtitle {
      font-size: 1.5em;
      color: var(--page-8k8-com-2-medium-text);
      margin-bottom: 30px;
    }

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

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

    .page-8k8-com-2__card {
      background-color: #2a2a4a;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-8k8-com-2-border-color);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-8k8-com-2__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    }

    .page-8k8-com-2__card-image-wrapper {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      margin-bottom: 20px;
      overflow: hidden;
      border-radius: 8px;
    }

    .page-8k8-com-2__card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
    }

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

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

    .page-8k8-com-2__list {
      list-style: none;
      padding: 0;
      margin: 40px auto;
      max-width: 900px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .page-8k8-com-2__list-item {
      background-color: #2a2a4a;
      padding: 20px;
      border-radius: 8px;
      text-align: left;
      border-left: 5px solid var(--page-8k8-com-2-primary-color);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      color: var(--page-8k8-com-2-medium-text);
      font-size: 1.1em;
      display: flex;
      align-items: center;
      gap: 15px;
      box-sizing: border-box; /* Crucial for mobile responsiveness */
      word-wrap: break-word; /* Ensure text wraps */
      overflow-wrap: break-word;
    }

    .page-8k8-com-2__list-item-icon-wrapper {
      width: 50px;
      height: 50px;
      flex-shrink: 0;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid var(--page-8k8-com-2-accent-color);
    }

    .page-8k8-com-2__list-item-icon {
      width: 100%;
      height: 100%;
      object-fit: cover;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-8k8-com-2__floating-button-group {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .page-8k8-com-2__floating-button {
      padding: 12px 25px;
      border-radius: 50px;
      font-size: 1em;
      font-weight: bold;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease, background-color 0.3s ease;
      border: none;
      cursor: pointer;
      color: var(--page-8k8-com-2-light-text);
    }

    .page-8k8-com-2__floating-button:hover {
      transform: translateY(-3px);
    }

    .page-8k8-com-2__register-button {
      background-color: #28a745; /* Green */
    }

    .page-8k8-com-2__register-button:hover {
      background-color: #218838;
    }

    .page-8k8-com-2__login-button {
      background-color: var(--page-8k8-com-2-primary-color); /* Blue */
    }

    .page-8k8-com-2__login-button:hover {
      background-color: var(--page-8k8-com-2-hover-color);
    }

    /* FAQ Section */
    .page-8k8-com-2__faq-section {
      background-color: #1a1a2e;
      padding: 60px 0;
    }

    .page-8k8-com-2__faq-container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

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

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

    .page-8k8-com-2__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevents text selection from interfering with click */
      color: inherit; /* Ensure h3 inherits color from parent */
      font-size: 1.2em; /* Keep font size consistent */
    }

    .page-8k8-com-2__faq-question:hover {
      background-color: var(--page-8k8-com-2-hover-color);
    }

    .page-8k8-com-2__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevents icon from interfering with click */
      transition: transform 0.3s ease;
    }

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

    .page-8k8-com-2__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--page-8k8-com-2-medium-text);
      background-color: #2a2a4a;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      text-align: left;
      font-size: 1.1em;
    }

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

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

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

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

      .page-8k8-com-2__section-subtitle {
        font-size: 1.2em;
      }

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

      .page-8k8-com-2__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-8k8-com-2__card {
        padding: 20px;
      }

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

      .page-8k8-com-2__list {
        grid-template-columns: 1fr;
        padding: 0 10px;
      }

      .page-8k8-com-2__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        font-size: 1em;
      }

      .page-8k8-com-2__list-item-icon-wrapper {
        width: 40px;
        height: 40px;
      }

      .page-8k8-com-2__floating-button-group {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 15px;
        justify-content: center;
      }

      .page-8k8-com-2__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
      }

      .page-8k8-com-2__faq-question,
      .page-8k8-com-2__faq-question h3 {
        font-size: 1.1em;
        padding: 15px 20px;
      }

      .page-8k8-com-2__faq-answer {
        padding: 0 20px;
        font-size: 0.95em;
      }

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

      .page-8k8-com-2__container {
        padding: 10px;
      }

      .page-8k8-com-2__section {
        padding: 40px 0;
      }

      .page-8k8-com-2__card-image {
        max-width: 100%; /* Ensure responsiveness */
        height: auto; /* Maintain aspect ratio */
      }

      .page-8k8-com-2__hero-image {
        max-width: 100%; /* Ensure responsiveness */
        height: auto; /* Maintain aspect ratio */
      }

      .page-8k8-com-2__list-item-icon {
        max-width: 100%; /* Ensure responsiveness */
        height: auto; /* Maintain aspect ratio */
      }
    }
  