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

    /* Fallback for header offset if body padding-top is not set by shared.css */
    .page-88vv1-con.page-content {
      padding-top: var(--header-offset, 122px);
    }

    .page-88vv1-con__hero-section {
      position: relative;
      width: 100%;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding: 10px 0 60px 0; /* Minimal top padding, more bottom for content */
      box-sizing: border-box;
    }

    .page-88vv1-con__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .page-88vv1-con__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 2;
    }

    .page-88vv1-con__hero-content {
      position: relative;
      z-index: 3;
      max-width: 90%;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-88vv1-con__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: #ffd700; /* Gold color for prominence */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-88vv1-con__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 20px;
      color: #eee;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-88vv1-con__cta-button {
      display: inline-block;
      background-color: #007bff; /* Blue for call to action */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer;
      border: none;
      font-size: 1em;
    }

    .page-88vv1-con__cta-button:hover {
      background-color: #0056b3;
    }

    .page-88vv1-con__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    .page-88vv1-con__section-title {
      font-size: 2em;
      color: #007bff;
      text-align: center;
      margin-bottom: 30px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-88vv1-con__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      justify-content: center;
    }

    .page-88vv1-con__card {
      background-color: #f9f9f9;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      text-align: center;
      padding-bottom: 20px;
      box-sizing: border-box;
    }

    .page-88vv1-con__card-image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 15px;
    }

    .page-88vv1-con__card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      max-width: 100%;
      transition: transform 0.3s ease;
    }

    .page-88vv1-con__card-image:hover {
      transform: scale(1.05);
    }

    .page-88vv1-con__card-title {
      font-size: 1.4em;
      color: #333;
      margin-bottom: 10px;
      padding: 0 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-88vv1-con__card-description {
      font-size: 0.9em;
      color: #666;
      padding: 0 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-88vv1-con__promo-item {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
      background-color: #e9f5ff;
      border-left: 5px solid #007bff;
      padding: 15px;
      border-radius: 5px;
      box-sizing: border-box;
    }

    .page-88vv1-con__promo-icon {
      flex-shrink: 0;
      width: 80px;
      height: 80px;
      margin-right: 15px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-88vv1-con__promo-content {
      flex-grow: 1;
    }

    .page-88vv1-con__promo-title {
      font-size: 1.3em;
      color: #007bff;
      margin-bottom: 5px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-88vv1-con__promo-description {
      font-size: 0.95em;
      color: #555;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-88vv1-con__floating-buttons {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 15px;
      z-index: 1000;
    }

    .page-88vv1-con__floating-button {
      background-color: #28a745; /* Green for register */
      color: #fff;
      padding: 12px 25px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease, transform 0.2s ease;
      cursor: pointer;
      border: none;
      font-size: 1em;
    }

    .page-88vv1-con__floating-button--login {
      background-color: #ffc107; /* Yellow for login */
      color: #333;
    }

    .page-88vv1-con__floating-button:hover {
      transform: translateY(-2px);
    }

    /* FAQ Section */
    .page-88vv1-con__faq-section {
      padding: 40px 20px;
      max-width: 800px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    .page-88vv1-con__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 10px;
      box-sizing: border-box;
    }

    .page-88vv1-con__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-88vv1-con__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      background-color: #f5f5f5;
      cursor: pointer;
      user-select: none;
      border-radius: 5px;
      transition: background-color 0.3s ease;
      box-sizing: border-box;
    }

    .page-88vv1-con__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-88vv1-con__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #333;
      pointer-events: none; /* Prevent h3 from blocking click event */
      word-wrap: break-word;
      overflow-wrap: break-word;
      flex-grow: 1;
    }

    .page-88vv1-con__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #007bff;
      margin-left: 10px;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      flex-shrink: 0;
      width: 20px;
      text-align: center;
    }

    .page-88vv1-con__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      background-color: #fff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #555;
      box-sizing: border-box;
    }

    .page-88vv1-con__faq-item.active .page-88vv1-con__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-88vv1-con__faq-item.active .page-88vv1-con__faq-toggle {
      content: '−'; /* Changed by JS */
    }

    /* General list item responsiveness */
    .page-88vv1-con ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-88vv1-con ul li {
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .page-88vv1-con__hero-title {
        font-size: 2em;
      }

      .page-88vv1-con__hero-subtitle {
        font-size: 1em;
      }

      .page-88vv1-con__section {
        padding: 30px 15px;
      }

      .page-88vv1-con__section-title {
        font-size: 1.8em;
      }

      .page-88vv1-con__grid {
        grid-template-columns: 1fr;
      }

      .page-88vv1-con__promo-item {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 5px solid #007bff;
        padding: 15px 10px;
      }

      .page-88vv1-con__promo-icon {
        margin: 0 auto 15px auto;
      }

      .page-88vv1-con__promo-title {
        font-size: 1.2em;
      }

      .page-88vv1-con__floating-buttons {
        width: 100%;
        left: 0;
        transform: translateX(0);
        bottom: 0;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        background-color: rgba(255, 255, 255, 0.95);
        padding: 10px;
        justify-content: space-around;
        gap: 5px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
      }

      .page-88vv1-con__floating-button {
        flex: 1;
        padding: 10px 15px;
        font-size: 0.9em;
        border-radius: 20px;
      }

      .page-88vv1-con__faq-section {
        padding: 30px 15px;
      }

      .page-88vv1-con__faq-question h3 {
        font-size: 1em;
      }

      .page-88vv1-con__faq-toggle {
        font-size: 1.2em;
      }

      .page-88vv1-con__faq-answer {
        padding: 0 10px;
      }

      .page-88vv1-con__faq-item.active .page-88vv1-con__faq-answer {
        padding: 15px 10px !important;
      }

      .page-88vv1-con__card-image-wrapper {
        height: 180px;
      }
    }

    @media (max-width: 480px) {
      .page-88vv1-con__hero-title {
        font-size: 1.8em;
      }
      .page-88vv1-con__section-title {
        font-size: 1.6em;
      }
      .page-88vv1-con__floating-button {
        padding: 8px 12px;
        font-size: 0.85em;
      }
    }
  