
    .page-888k {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-888k__hero-section {
      position: relative;
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      text-align: center;
      padding: 100px 20px 60px; /* Adjust padding-top to avoid header overlap */
      overflow: hidden;
      border-bottom-left-radius: 50px;
      border-bottom-right-radius: 50px;
      margin-bottom: 40px;
    }

    .page-888k__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-888k__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-888k__main-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      color: #ffd700; /* Gold color for brand */
    }

    .page-888k__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-888k__promo-link {
      display: inline-block;
      background-color: #ff4500; /* OrangeRed */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      border: none;
      cursor: pointer;
    }

    .page-888k__promo-link:hover {
      background-color: #e63900;
      transform: translateY(-3px);
    }

    .page-888k__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 30px;
    }

    .page-888k__section-title {
      font-size: 2.2em;
      color: #1a2a6c;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-888k__text-content {
      font-size: 1.1em;
      color: #555;
      text-align: center;
      margin-bottom: 30px;
    }

    .page-888k__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      justify-items: center;
    }

    .page-888k__product-card {
      background-color: #f0f8ff; /* AliceBlue */
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
      max-width: 350px;
      width: 100%;
      box-sizing: border-box;
    }

    .page-888k__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .page-888k__product-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-bottom: 3px solid #1a2a6c;
      margin-bottom: 15px;
    }

    .page-888k__product-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .page-888k__product-title {
      font-size: 1.5em;
      color: #1a2a6c;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-888k__product-description {
      font-size: 1em;
      color: #666;
      padding: 0 15px;
    }

    .page-888k__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
      width: fit-content;
      background-color: rgba(255, 255, 255, 0.9);
      padding: 10px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .page-888k__floating-button {
      background-color: #007bff; /* Blue */
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      white-space: nowrap;
    }

    .page-888k__floating-button--register {
      background-color: #28a745; /* Green */
    }

    .page-888k__floating-button:hover {
      transform: translateY(-2px);
    }

    .page-888k__floating-button--register:hover {
      background-color: #218838;
    }

    .page-888k__floating-button--login:hover {
      background-color: #0056b3;
    }

    .page-888k__features-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .page-888k__feature-item {
      background-color: #e6f7ff; /* Light Blue */
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      box-sizing: border-box;
      width: 100%;
    }

    .page-888k__feature-icon {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-bottom: 15px;
    }

    .page-888k__feature-title {
      font-size: 1.3em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-888k__feature-description {
      font-size: 1em;
      color: #555;
    }

    .page-888k__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto 30px;
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-888k__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
    }

    .page-888k__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-888k__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      color: #1a2a6c;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-888k__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-888k__faq-question h3 {
      margin: 0;
      padding-right: 10px;
      pointer-events: none;
      font-size: 1em; /* Adjust to fit within the question div */
      flex-grow: 1;
      text-align: left;
    }

    .page-888k__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      pointer-events: none;
      width: 25px;
      text-align: center;
      flex-shrink: 0;
    }

    .page-888k__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;
      color: #666;
      font-size: 1em;
      text-align: left;
    }

    .page-888k__faq-item.active .page-888k__faq-answer {
      max-height: 2000px !important;
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-888k__faq-item.active .page-888k__faq-toggle {
      content: '−';
    }

    .page-888k__cta-section {
      text-align: center;
      padding: 40px 20px;
      background-color: #fdbb2d; /* Yellowish */
      color: #1a2a6c;
      border-radius: 15px;
      max-width: 1200px;
      margin: 0 auto;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-888k__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-888k__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (max-width: 768px) {
      .page-888k__hero-section {
        padding: 80px 15px 40px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
      }

      .page-888k__main-title {
        font-size: 2em;
      }

      .page-888k__hero-subtitle {
        font-size: 1.2em;
      }

      .page-888k__promo-link {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-888k__section-title {
        font-size: 1.8em;
      }

      .page-888k__text-content {
        font-size: 1em;
      }

      .page-888k__grid {
        grid-template-columns: 1fr;
      }

      .page-888k__product-card {
        max-width: 100%;
      }

      .page-888k__floating-buttons {
        flex-direction: column;
        bottom: 15px;
        gap: 10px;
        padding: 10px 15px;
        width: calc(100% - 30px);
        max-width: 300px;
      }

      .page-888k__floating-button {
        width: 100%;
        text-align: center;
        padding: 10px 15px;
      }

      .page-888k__features-list {
        grid-template-columns: 1fr;
      }

      .page-888k__feature-item,
      .page-888k__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px;
        padding-right: 15px;
      }

      .page-888k__faq-question {
        font-size: 1em;
      }

      .page-888k__faq-answer {
        padding: 0 10px;
      }

      .page-888k__faq-item.active .page-888k__faq-answer {
        padding: 15px 10px !important;
      }

      .page-888k__cta-title {
        font-size: 2em;
      }

      .page-888k__cta-description {
        font-size: 1em;
      }

      .page-888k__section, .page-888k__faq-section, .page-888k__cta-section {
        padding: 20px 15px;
        margin-left: 15px;
        margin-right: 15px;
      }

      .page-888k img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-888k__product-image-wrapper, .page-888k__feature-icon {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
    }
  