
    :root {
      --page-8k8-com-3-primary-color: #e44d26; /* A vibrant, engaging color */
      --page-8k8-com-3-secondary-color: #333;
      --page-8k8-com-3-accent-color: #ffc107; /* Gold/yellow for highlights */
      --page-8k8-com-3-light-bg: #f5f5f5;
      --page-8k8-com-3-dark-bg: #222;
      --page-8k8-com-3-text-color-light: #fff;
      --page-8k8-com-3-text-color-dark: #333;
      --page-8k8-com-3-border-radius: 8px;
    }

    .page-8k8-com-3 {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-8k8-com-3-text-color-dark);
      background-color: #fff;
      overflow-x: hidden;
    }

    .page-8k8-com-3__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-8k8-com-3__section--dark {
      background-color: var(--page-8k8-com-3-dark-bg);
      color: var(--page-8k8-com-3-text-color-light);
    }

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

    .page-8k8-com-3__section-title--light {
      color: var(--page-8k8-com-3-text-color-light);
    }

    .page-8k8-com-3__section-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--page-8k8-com-3-secondary-color);
    }

    .page-8k8-com-3__section-subtitle--light {
      color: #ccc;
    }

    .page-8k8-com-3__hero-section {
      background: linear-gradient(135deg, var(--page-8k8-com-3-primary-color), #f06e49);
      color: var(--page-8k8-com-3-text-color-light);
      padding-top: 10px; /* Adhering to fixed nav bar spacing rule */
      padding-bottom: 60px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 60vh;
    }

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

    .page-8k8-com-3__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      line-height: 1.2;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .page-8k8-com-3__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: #eee;
    }

    .page-8k8-com-3__hero-cta-group {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

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

    .page-8k8-com-3__button--primary {
      background-color: var(--page-8k8-com-3-accent-color);
      color: var(--page-8k8-com-3-dark-bg);
    }

    .page-8k8-com-3__button--primary:hover {
      background-color: #ffd740;
      transform: translateY(-3px);
    }

    .page-8k8-com-3__button--secondary {
      background-color: rgba(255, 255, 255, 0.2);
      color: var(--page-8k8-com-3-text-color-light);
      border: 2px solid var(--page-8k8-com-3-text-color-light);
    }

    .page-8k8-com-3__button--secondary:hover {
      background-color: rgba(255, 255, 255, 0.3);
      transform: translateY(-3px);
    }

    .page-8k8-com-3__image-container {
      width: 100%;
      max-width: 800px;
      margin: 40px auto;
      overflow: hidden;
      border-radius: var(--page-8k8-com-3-border-radius);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      box-sizing: border-box; /* Added for responsive image container */
    }

    .page-8k8-com-3__image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: var(--page-8k8-com-3-border-radius);
    }

    .page-8k8-com-3__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-8k8-com-3__card {
      background-color: #fff;
      border-radius: var(--page-8k8-com-3-border-radius);
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-8k8-com-3__card--dark {
      background-color: var(--page-8k8-com-3-secondary-color);
      color: var(--page-8k8-com-3-text-color-light);
    }

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

    .page-8k8-com-3__card-icon {
      margin-bottom: 20px;
      width: 100px; /* Minimum 200x200px rule applies to images, not icons */
      height: 100px;
      object-fit: contain;
    }

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

    .page-8k8-com-3__card--dark .page-8k8-com-3__card-title {
      color: var(--page-8k8-com-3-accent-color);
    }

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

    .page-8k8-com-3__card--dark .page-8k8-com-3__card-description {
      color: #ccc;
    }

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

    .page-8k8-com-3__list-item {
      background-color: var(--page-8k8-com-3-light-bg);
      padding: 20px;
      border-radius: var(--page-8k8-com-3-border-radius);
      text-align: left;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      font-size: 1.1em;
      color: var(--page-8k8-com-3-dark-bg);
      box-sizing: border-box; /* Required for list items */
      word-wrap: break-word !important; /* Text wrapping */
      overflow-wrap: break-word !important; /* Text wrapping */
    }

    .page-8k8-com-3__list-item strong {
      color: var(--page-8k8-com-3-primary-color);
    }

    .page-8k8-com-3__faq-section {
      background-color: var(--page-8k8-com-3-light-bg);
    }

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

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

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

    .page-8k8-com-3__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjust to fit parent, h3 is just for semantics here */
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-com-3__faq-question:hover {
      background-color: #f0f0f0;
    }

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

    .page-8k8-com-3__faq-item.active .page-8k8-com-3__faq-toggle {
      transform: rotate(45deg);
    }

    .page-8k8-com-3__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-8k8-com-3-secondary-color);
      text-align: left;
    }

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

    .page-8k8-com-3__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 1000;
    }

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

    .page-8k8-com-3__floating-button:hover {
      background-color: #f06e49;
      transform: translateY(-3px);
    }

    .page-8k8-com-3__floating-button--login {
      background-color: var(--page-8k8-com-3-accent-color);
      color: var(--page-8k8-com-3-dark-bg);
    }

    .page-8k8-com-3__floating-button--login:hover {
      background-color: #ffd740;
    }


    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-8k8-com-3__hero-title {
        font-size: 3em;
      }
      .page-8k8-com-3__section-title {
        font-size: 2em;
      }
      .page-8k8-com-3__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      }
    }

    @media (max-width: 768px) {
      .page-8k8-com-3__hero-section {
        min-height: 50vh;
        padding-bottom: 40px;
      }
      .page-8k8-com-3__hero-title {
        font-size: 2.2em;
      }
      .page-8k8-com-3__hero-description {
        font-size: 1.1em;
      }
      .page-8k8-com-3__button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-8k8-com-3__section {
        padding: 30px 15px;
      }
      .page-8k8-com-3__section-title {
        font-size: 1.8em;
      }
      .page-8k8-com-3__section-subtitle {
        font-size: 1em;
      }
      .page-8k8-com-3__grid {
        grid-template-columns: 1fr;
      }
      .page-8k8-com-3__list {
        grid-template-columns: 1fr;
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-8k8-com-3__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important;
      }
      .page-8k8-com-3__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
      }
      .page-8k8-com-3__faq-answer {
        padding: 0 20px;
      }
      .page-8k8-com-3__faq-item.active .page-8k8-com-3__faq-answer {
        padding: 15px 20px !important;
      }
      .page-8k8-com-3__floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
      }
      .page-8k8-com-3__floating-button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-8k8-com-3__image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }
      .page-8k8-com-3__image {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    @media (max-width: 480px) {
      .page-8k8-com-3__hero-title {
        font-size: 1.8em;
      }
      .page-8k8-com-3__hero-description {
        font-size: 0.95em;
      }
      .page-8k8-com-3__hero-cta-group {
        flex-direction: column;
        gap: 10px;
      }
      .page-8k8-com-3__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
      }
      .page-8k8-com-3__section-title {
        font-size: 1.5em;
      }
    }
  