
    :root {
      --page-primary-color: #e44d26; /* Màu chủ đạo của trang */
      --page-secondary-color: #ff7f50; /* Màu phụ trợ */
      --page-text-color: #333; /* Màu chữ chính */
      --page-background-color: #f8f8f8; /* Màu nền trang */
      --page-light-bg: #ffffff; /* Màu nền sáng */
      --page-border-color: #ddd; /* Màu viền */
      --page-hover-color: #c23b1c; /* Màu khi di chuột */
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-text-color);
      background-color: var(--page-background-color);
      padding: 20px 0;
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__hero-section {
      text-align: center;
      padding: 60px 15px 40px; /* Thêm padding-top cho header cố định */
      background: linear-gradient(135deg, var(--page-primary-color), var(--page-secondary-color));
      color: #fff;
      margin-bottom: 30px;
      border-radius: 8px;
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__hero-description {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto 30px;
      opacity: 0.9;
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__action-button {
      display: inline-block;
      background-color: #28a745;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      cursor: pointer; /* Sử dụng con trỏ pointer vì đây không phải là link */
      border: none;
      font-size: 1em;
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__action-button:hover {
      background-color: #218838;
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__section {
      background-color: var(--page-light-bg);
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__section-title {
      font-size: 2em;
      color: var(--page-primary-color);
      margin-bottom: 25px;
      text-align: center;
      position: relative;
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: var(--page-secondary-color);
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__content-block {
      margin-bottom: 30px;
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__content-block h3 {
      font-size: 1.5em;
      color: var(--page-primary-color);
      margin-bottom: 15px;
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__image-wrapper {
      text-align: center;
      margin: 30px 0;
      width: 100%; /* Đảm bảo wrapper chiếm toàn bộ chiều rộng */
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      min-width: 200px; /* Yêu cầu kích thước tối thiểu */
      min-height: 200px; /* Yêu cầu kích thước tối thiểu */
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__image:hover {
      transform: scale(1.02);
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__list-item {
      background-color: #f0f0f0;
      margin-bottom: 10px;
      padding: 15px 20px;
      border-left: 5px solid var(--page-primary-color);
      border-radius: 4px;
      transition: background-color 0.3s ease;
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__list-item:hover {
      background-color: #e6e6e6;
    }

    /* Phong cách cho phần FAQ */
    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__faq-section {
      background-color: var(--page-light-bg);
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__faq-item {
      border: 1px solid var(--page-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      background-color: #f5f5f5;
      cursor: pointer;
      font-weight: bold;
      color: var(--page-primary-color);
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__faq-question:hover {
      background-color: #eee;
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-primary-color);
      pointer-events: none; /* Ngăn h3 chặn sự kiện click */
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn icon chặn sự kiện click */
      color: var(--page-secondary-color);
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__faq-item.active .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__faq-toggle {
      transform: rotate(45deg); /* Thay đổi + thành X hoặc xoay cho - */
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__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: var(--page-text-color);
    }

    .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__faq-item.active .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Thiết kế đáp ứng */
    @media (max-width: 768px) {
      .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__hero-section {
        padding-top: 50px; /* Điều chỉnh cho header cố định nhỏ hơn trên di động */
      }

      .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__hero-title {
        font-size: 2em;
      }

      .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__hero-description {
        font-size: 1em;
      }

      .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__section {
        padding: 20px;
      }

      .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__section-title {
        font-size: 1.8em;
      }

      .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__content-block h3 {
        font-size: 1.3em;
      }

      .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__faq-question {
        padding: 15px;
      }

      .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__faq-question h3 {
        font-size: 1.1em;
      }

      .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__faq-answer {
        padding: 0 10px;
      }
      .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__faq-item.active .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__faq-answer {
        padding: 15px 10px !important;
      }

      /* Tối ưu hóa hình ảnh đáp ứng trên di động */
      .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__hero-title {
        font-size: 1.8em;
      }
      .page-resourcse-fabet-why-more-and-more-users-are-choosing-them__section-title {
        font-size: 1.5em;
      }
    }
  