
    .page-one-888 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-one-888__hero-section {
      position: relative;
      width: 100%;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Nhỏ gọn để tạo khoảng cách thẩm mỹ, giả định body đã xử lý offset chính */
    }

    .page-one-888__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.7);
    }

    .page-one-888__hero-content {
      z-index: 1;
      padding: 20px;
      max-width: 900px;
    }

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

    .page-one-888__hero-slogan {
      font-size: 1.3em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
      color: #fff;
    }

    .page-one-888__button-group {
      display: flex;
      gap: 15px;
      justify-content: center;
    }

    .page-one-888__button {
      background-color: #e44d26; /* Màu cam/đỏ cho hành động */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-one-888__button:hover {
      background-color: #f76c48;
    }

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

    .page-one-888__section-title {
      font-size: 2em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-one-888__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 60px;
      height: 3px;
      background-color: #e44d26;
      border-radius: 2px;
    }

    .page-one-888__text-content p {
      margin-bottom: 15px;
      text-align: justify;
    }

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

    .page-one-888__product-card {
      background-color: #f9f9f9;
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-one-888__product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .page-one-888__product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-one-888__product-info {
      padding: 20px;
    }

    .page-one-888__product-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      color: #e44d26;
    }

    .page-one-888__promo-list,
    .page-one-888__provider-list,
    .page-one-888__payment-list,
    .page-one-888__social-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .page-one-888__list-item {
      background-color: #f0f0f0;
      padding: 15px 20px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      gap: 15px;
      box-sizing: border-box;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-one-888__list-item img {
        max-width: 80px;
        height: auto;
        border-radius: 4px;
    }

    .page-one-888__list-item a {
      text-decoration: none;
      color: #e44d26;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-one-888__list-item a:hover {
      color: #c73a1a;
    }

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

    .page-one-888__floating-button {
      background-color: #e44d26;
      color: #fff;
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
      min-width: 120px;
    }

    .page-one-888__floating-button:hover {
      background-color: #f76c48;
    }

    /* Kiểu dáng phần FAQ */
    .page-one-888__faq-section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
      background-color: #fff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
      border-radius: 8px;
    }

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

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

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

    .page-one-888__faq-question:hover {
      background-color: #e9e9e9;
    }

    .page-one-888__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #333;
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

    .page-one-888__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #e44d26;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn biểu tượng toggle chặn sự kiện click */
    }

    .page-one-888__faq-item.active .page-one-888__faq-toggle {
      transform: rotate(45deg);
    }

    .page-one-888__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;
      background-color: #fafafa;
      border-radius: 0 0 5px 5px;
      color: #555;
    }

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

    /* Điều chỉnh Responsive */
    @media (max-width: 768px) {
      .page-one-888__hero-section {
        height: 400px;
      }

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

      .page-one-888__hero-slogan {
        font-size: 1em;
      }

      .page-one-888__button-group {
        flex-direction: column;
        gap: 10px;
      }

      .page-one-888__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
      }

      .page-one-888__section,
      .page-one-888__faq-section {
        padding: 20px 15px;
      }

      .page-one-888__section-title {
        font-size: 1.6em;
      }

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

      .page-one-888__promo-list,
      .page-one-888__provider-list,
      .page-one-888__payment-list,
      .page-one-888__social-list {
        grid-template-columns: 1fr;
      }

      .page-one-888__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
      }

      .page-one-888__promo-list,
      .page-one-888__provider-list,
      .page-one-888__payment-list,
      .page-one-888__social-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-one-888__list-item img {
          max-width: 60px;
      }

      .page-one-888__floating-buttons {
        flex-direction: row;
        bottom: 15px;
        right: 15px;
        left: 15px;
        justify-content: center;
      }

      .page-one-888__floating-button {
        flex: 1;
        max-width: 150px;
        font-size: 0.9em;
        padding: 8px 15px;
      }

      .page-one-888__faq-question {
        padding: 12px;
      }

      .page-one-888__faq-question h3 {
        font-size: 1em;
      }

      .page-one-888__faq-answer {
        padding: 15px 12px !important;
      }
    }

    @media (max-width: 480px) {
      .page-one-888__main-title {
        font-size: 1.8em;
      }
      .page-one-888__hero-slogan {
        font-size: 0.9em;
      }
      .page-one-888__floating-buttons {
        flex-direction: column;
        align-items: stretch;
      }
      .page-one-888__floating-button {
        max-width: none;
      }
    }
  