
    .page-78be {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f5f5f5;
      line-height: 1.6;
      overflow-x: hidden; /* Ngăn cuộn ngang trên một số phần tử */
      padding-bottom: 100px; /* Khoảng trống cho các nút nổi */
    }

    /* Định kiểu phần */
    .page-78be__hero-section,
    .page-78be__about-section,
    .page-78be__products-section,
    .page-78be__promotions-section,
    .page-78be__providers-section,
    .page-78be__payment-section,
    .page-78be__faq-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
      text-align: center;
    }

    /* Đệm trên cụ thể cho phần hero để tránh bù đắp tiêu đề kép */
    .page-78be__hero-section {
      padding-top: 10px; /* Đệm trang trí nhỏ ở trên, body xử lý bù đắp tiêu đề */
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Nền gradient để tăng tính thẩm mỹ */
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 500px;
      position: relative;
      overflow: hidden;
    }

    .page-78be__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3; /* Hình nền mờ */
      z-index: 0;
    }

    .page-78be__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: 20px;
    }

    .page-78be__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

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

    .page-78be__hero-cta {
      display: inline-block;
      background-color: #ffcc00; /* Màu vàng cho CTA */
      color: #1a2a6c; /* Màu xanh đậm cho văn bản trên nền vàng */
      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 10px rgba(0,0,0,0.3);
    }

    .page-78be__hero-cta:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    /* Tiêu đề phần chung */
    .page-78be__section-title {
      font-size: 2.2em;
      color: #1a2a6c;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-78be__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

    .page-78be__section-description {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Lưới sản phẩm */
    .page-78be__product-grid,
    .page-78be__promotion-grid,
    .page-78be__provider-grid,
    .page-78be__payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 20px;
    }

    .page-78be__product-item,
    .page-78be__promotion-item {
      background-color: #fff;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      padding-bottom: 20px;
    }

    .page-78be__product-item:hover,
    .page-78be__promotion-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .page-78be__product-image,
    .page-78be__promotion-image {
      width: 100%;
      height: 200px; /* Chiều cao cố định để nhất quán */
      object-fit: cover;
      border-bottom: 1px solid #eee;
      margin-bottom: 15px;
    }

    .page-78be__product-title,
    .page-78be__promotion-title {
      font-size: 1.5em;
      color: #1a2a6c;
      margin-bottom: 10px;
      padding: 0 15px;
    }

    .page-78be__product-description,
    .page-78be__promotion-text {
      font-size: 1em;
      color: #666;
      padding: 0 15px;
    }

    .page-78be__promotions-cta {
      display: inline-block;
      background-color: #1a2a6c;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      margin-top: 30px;
      transition: background-color 0.3s ease;
    }

    .page-78be__promotions-cta:hover {
      background-color: #2b3d8f;
    }

    /* Logo nhà cung cấp và thanh toán */
    .page-78be__provider-logo,
    .page-78be__payment-logo {
      max-width: 100%;
      height: 100px; /* Chiều cao nhất quán cho logo */
      object-fit: contain;
      padding: 10px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      transition: transform 0.2s ease;
    }

    .page-78be__provider-logo:hover,
    .page-78be__payment-logo:hover {
      transform: scale(1.05);
    }

    /* Nút nổi */
    .page-78be__floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 1000;
    }

    .page-78be__floating-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 120px;
      height: 50px;
      border-radius: 30px;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      transition: transform 0.3s ease, background-color 0.3s ease;
      font-size: 1.1em;
    }

    .page-78be__floating-btn--register {
      background-color: #007bff; /* Màu xanh cho đăng ký */
    }

    .page-78be__floating-btn--register:hover {
      background-color: #0056b3;
      transform: translateY(-3px);
    }

    .page-78be__floating-btn--login {
      background-color: #28a745; /* Màu xanh lá cho đăng nhập */
    }

    .page-78be__floating-btn--login:hover {
      background-color: #1e7e34;
      transform: translateY(-3px);
    }

    /* Phần FAQ */
    .page-78be__faq-list {
      max-width: 800px;
      margin: 40px auto;
      text-align: left;
    }

    .page-78be__faq-item {
      background-color: #fff;
      margin-bottom: 15px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      overflow: hidden;
      border: 1px solid #e0e0e0;
    }

    .page-78be__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f9f9f9;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #1a2a6c; /* Đảm bảo độ tương phản tốt */
      transition: background-color 0.3s ease;
    }

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

    .page-78be__faq-q-text {
      margin: 0;
      font-size: 1.2em;
      color: #1a2a6c; /* Đảm bảo độ tương phản tốt */
      pointer-events: none; /* Ngăn văn bản chặn sự kiện nhấp */
    }

    .page-78be__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn biểu tượng chuyển đổi chặn sự kiện nhấp */
      color: #ffcc00; /* Đảm bảo độ tương phản tốt */
    }

    .page-78be__faq-item.active .page-78be__faq-toggle {
      transform: rotate(45deg); /* Thay đổi '+' thành 'x' hoặc tương tự trực quan */
    }

    .page-78be__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Đệm ban đầu khớp với câu hỏi */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 1em;
    }

    .page-78be__faq-item.active .page-78be__faq-answer {
      max-height: 2000px !important; /* Đủ lớn */
      padding: 20px 20px !important; /* Đệm mở rộng */
      opacity: 1;
    }

    .page-78be__faq-answer p {
      margin: 0;
    }

    /* Thiết kế đáp ứng */
    @media (max-width: 768px) {
      .page-78be__hero-section {
        min-height: 400px;
        padding-top: 10px; /* Vẫn là đệm trang trí nhỏ */
      }

      .page-78be__hero-title {
        font-size: 2em;
      }

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

      .page-78be__hero-cta {
        padding: 12px 25px;
        font-size: 1em;
      }

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

      .page-78be__section-description {
        font-size: 0.95em;
      }

      .page-78be__product-grid,
      .page-78be__promotion-grid,
      .page-78be__provider-grid,
      .page-78be__payment-grid {
        grid-template-columns: 1fr; /* Một cột trên di động */
        gap: 20px;
      }

      .page-78be__product-item,
      .page-78be__promotion-item,
      .page-78be__provider-logo,
      .page-78be__payment-logo {
        width: 100% !important; /* Đảm bảo chiều rộng đầy đủ */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
      }
      
      .page-78be__product-image,
      .page-78be__promotion-image,
      .page-78be__provider-logo,
      .page-78be__payment-logo {
        max-width: 100% !important;
        height: auto !important; /* Đảm bảo hình ảnh được chia tỷ lệ */
        object-fit: contain !important; /* Duy trì tỷ lệ khung hình */
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-78be__faq-list {
        margin: 20px auto;
        padding: 0 10px;
      }

      .page-78be__faq-question {
        padding: 12px 15px;
      }

      .page-78be__faq-q-text {
        font-size: 1.1em;
      }

      .page-78be__faq-answer {
        padding: 0 15px;
      }

      .page-78be__faq-item.active .page-78be__faq-answer {
        padding: 15px !important;
      }

      .page-78be__floating-buttons {
        flex-direction: row;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 10px;
        justify-content: space-around;
      }

      .page-78be__floating-btn {
        width: 48%; /* Điều chỉnh chiều rộng cho hai nút cạnh nhau */
        height: 45px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-78be__hero-title {
        font-size: 1.8em;
      }
      .page-78be__hero-description {
        font-size: 0.9em;
      }
      .page-78be__floating-buttons {
        bottom: 5px;
      }
      .page-78be__floating-btn {
        width: 47%;
      }
    }
  