
    .page-78be {
      font-family: 'Arial', sans-serif;
      background-color: #1a1a2e;
      color: #e0e0e0;
      line-height: 1.6;
      padding-bottom: 80px; /* Space for fixed buttons */
    }

    .page-78be__hero-section {
      position: relative;
      text-align: center;
      color: #fff;
      padding: 10px 0 60px 0;
      overflow: hidden;
      background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    }

    .page-78be__hero-image {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 20px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-78be__hero-content {
      padding: 0 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-78be__hero-title {
      font-size: 2.5em;
      margin-bottom: 10px;
      color: #ffcc00;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      font-weight: bold;
    }

    .page-78be__hero-description {
      font-size: 1.1em;
      margin-bottom: 30px;
      color: #ccc;
    }

    .page-78be__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      background-color: rgba(0, 0, 0, 0.8);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      box-sizing: border-box;
    }

    .page-78be__button {
      background-color: #e94560;
      color: #fff;
      border: none;
      padding: 12px 25px;
      font-size: 1em;
      border-radius: 25px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-weight: bold;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      min-width: 120px;
      box-sizing: border-box;
    }

    .page-78be__button:hover {
      background-color: #b8334b;
      transform: translateY(-2px);
    }

    .page-78be__button--secondary {
      background-color: #0f3460;
    }

    .page-78be__button--secondary:hover {
      background-color: #0c2a4d;
    }

    .page-78be__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .page-78be__section-title {
      font-size: 2em;
      color: #ffcc00;
      margin-bottom: 30px;
      position: relative;
      display: inline-block;
    }

    .page-78be__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #e94560;
      margin: 10px auto 0;
    }

    .page-78be__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-78be__card {
      background-color: #2e2e4a;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .page-78be__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    .page-78be__card-image {
      width: 100%;
      max-width: 400px;
      height: 250px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .page-78be__card-title {
      font-size: 1.4em;
      color: #ffcc00;
      margin-bottom: 10px;
      text-align: center;
    }

    .page-78be__card-description {
      font-size: 0.95em;
      color: #ccc;
      text-align: center;
    }

    .page-78be__promo-item {
      background-color: #2e2e4a;
      border-radius: 10px;
      padding: 20px;
      text-align: left;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
    }

    .page-78be__promo-item:hover {
      transform: translateY(-5px);
    }

    .page-78be__promo-title {
      color: #e94560;
      font-size: 1.3em;
      margin-bottom: 10px;
    }

    .page-78be__promo-description {
      color: #ccc;
      font-size: 0.9em;
    }

    .page-78be__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
      align-items: center;
      justify-items: center;
      margin-top: 30px;
    }

    .page-78be__logo-item {
      background-color: #2e2e4a;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px;
      transition: transform 0.2s ease;
      box-sizing: border-box;
    }

    .page-78be__logo-item:hover {
      transform: scale(1.05);
    }

    .page-78be__logo-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    /* FAQ Section */
    .page-78be__faq-section {
      background-color: #1a1a2e;
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-78be__faq-item {
      margin-bottom: 15px;
      border: 1px solid #0f3460;
      border-radius: 8px;
      overflow: hidden;
    }

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

    .page-78be__faq-question:hover {
      background-color: #1a1a2e;
    }

    .page-78be__faq-question h3 {
      margin: 0;
      color: #ffcc00;
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-78be__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle from blocking click event on parent */
      transition: transform 0.3s ease;
    }

    .page-78be__faq-item.active .page-78be__faq-toggle {
      transform: rotate(45deg);
    }

    .page-78be__faq-answer {
      background-color: #2e2e4a;
      color: #ccc;
      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;
    }

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

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

      .page-78be__hero-description {
        font-size: 1em;
      }

      .page-78be__section {
        padding: 30px 15px;
      }

      .page-78be__section-title {
        font-size: 1.8em;
      }

      .page-78be__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-78be__card {
        padding: 20px;
      }

      .page-78be__card-image {
        height: 200px;
      }

      .page-78be__button {
        padding: 10px 20px;
        font-size: 0.9em;
        min-width: unset;
      }

      .page-78be__logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
      }

      .page-78be__logo-item {
        height: 60px;
        padding: 10px;
      }

      /* List items responsive */
      .page-78be__grid > *,
      .page-78be__promo-item,
      .page-78be__logo-item,
      .page-78be__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-78be__grid,
      .page-78be__logo-grid {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-78be__faq-question,
      .page-78be__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      /* Image responsive */
      .page-78be__hero-image,
      .page-78be__card-image,
      .page-78be__logo-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-78be__card-image-container, .page-78be__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  