
    /* Reset và biến cơ bản */
    :root {
      --page-primary-color: #007bff;
      --page-secondary-color: #6c757d;
      --page-accent-color: #28a745;
      --page-text-color: #333;
      --page-bg-color: #f8f9fa;
      --page-light-bg: #ffffff;
      --page-border-color: #dee2e6;
      --page-shadow: rgba(0, 0, 0, 0.1);
      --page-border-radius: 8px;
    }

    .page-resources-33win01-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-bg-color);
      padding: 20px 0;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__hero-section {
      background: linear-gradient(135deg, var(--page-primary-color), #0056b3);
      color: #fff;
      padding: 100px 0 60px; /* Adjusted padding-top for fixed header */
      text-align: center;
      border-radius: var(--page-border-radius);
      margin-bottom: 30px;
      box-shadow: 0 4px 15px var(--page-shadow);
      position: relative;
      overflow: hidden;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
      animation: page-resources-33win01-why-more-and-more-users-are-choosing-them__hero-animation 15s infinite linear;
    }

    @keyframes page-resources-33win01-why-more-and-more-users-are-choosing-them__hero-animation {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__hero-title {
      font-size: 3.2em;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__cta-button {
      display: inline-block;
      background-color: var(--page-accent-color);
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__cta-button:hover {
      background-color: #218838;
      transform: translateY(-3px);
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__section {
      background-color: var(--page-light-bg);
      padding: 40px;
      margin-bottom: 30px;
      border-radius: var(--page-border-radius);
      box-shadow: 0 2px 10px var(--page-shadow);
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__section-title {
      font-size: 2.2em;
      color: var(--page-primary-color);
      margin-bottom: 25px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-accent-color);
      border-radius: 2px;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__content-text {
      font-size: 1.1em;
      line-height: 1.8;
      margin-bottom: 20px;
      text-align: justify;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: var(--page-border-radius);
      margin: 25px 0;
      box-shadow: 0 4px 10px var(--page-shadow);
      display: block;
    }

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

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__list-item {
      background-color: #e9f7ef;
      border-left: 5px solid var(--page-accent-color);
      padding: 15px 20px;
      margin-bottom: 10px;
      border-radius: 5px;
      font-size: 1.1em;
      display: flex;
      align-items: center;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__list-item::before {
      content: '✓';
      color: var(--page-accent-color);
      font-weight: bold;
      margin-right: 10px;
      font-size: 1.2em;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 25px;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__card {
      background-color: var(--page-bg-color);
      padding: 25px;
      border-radius: var(--page-border-radius);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid var(--page-border-color);
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__card-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
      display: inline-block;
      vertical-align: middle;
      border-radius: 50%;
      object-fit: cover;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__card-title {
      font-size: 1.5em;
      color: var(--page-primary-color);
      margin-bottom: 10px;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__card-description {
      font-size: 1em;
      color: var(--page-secondary-color);
    }

    /* FAQ Section */
    .page-resources-33win01-why-more-and-more-users-are-choosing-them__faq-section {
      background-color: var(--page-light-bg);
      padding: 40px;
      margin-bottom: 30px;
      border-radius: var(--page-border-radius);
      box-shadow: 0 2px 10px var(--page-shadow);
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__faq-title {
      font-size: 2.2em;
      color: var(--page-primary-color);
      margin-bottom: 25px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__faq-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--page-accent-color);
      border-radius: 2px;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__faq-item {
      border: 1px solid var(--page-border-color);
      border-radius: var(--page-border-radius);
      margin-bottom: 15px;
      overflow: hidden;
      background-color: #fff;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f0f8ff;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      font-weight: bold;
      color: var(--page-primary-color);
      transition: background-color 0.3s ease;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__faq-question:hover {
      background-color: #e0f0ff;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__faq-question h3 {
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event on parent div */
      color: var(--page-primary-color);
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      font-weight: bold;
      color: var(--page-accent-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent div */
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__faq-item.active .page-resources-33win01-why-more-and-more-users-are-choosing-them__faq-toggle {
      transform: rotate(45deg); /* Change '+' to 'x' or use '-' directly */
    }

    .page-resources-33win01-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-resources-33win01-why-more-and-more-users-are-choosing-them__faq-item.active .page-resources-33win01-why-more-and-more-users-are-choosing-them__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-resources-33win01-why-more-and-more-users-are-choosing-them__faq-answer p {
      margin-bottom: 10px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-resources-33win01-why-more-and-more-users-are-choosing-them__hero-section {
        padding: 80px 0 40px;
      }

      .page-resources-33win01-why-more-and-more-users-are-choosing-them__hero-title {
        font-size: 2.2em;
      }

      .page-resources-33win01-why-more-and-more-users-are-choosing-them__hero-subtitle {
        font-size: 1.2em;
      }

      .page-resources-33win01-why-more-and-more-users-are-choosing-them__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-resources-33win01-why-more-and-more-users-are-choosing-them__section {
        padding: 25px;
      }

      .page-resources-33win01-why-more-and-more-users-are-choosing-them__section-title {
        font-size: 1.8em;
      }

      .page-resources-33win01-why-more-and-more-users-are-choosing-them__content-text,
      .page-resources-33win01-why-more-and-more-users-are-choosing-them__list-item,
      .page-resources-33win01-why-more-and-more-users-are-choosing-them__card-description {
        font-size: 0.95em;
      }

      .page-resources-33win01-why-more-and-more-users-are-choosing-them__grid {
        grid-template-columns: 1fr;
      }

      .page-resources-33win01-why-more-and-more-users-are-choosing-them__card-icon {
        width: 60px;
        height: 60px;
      }

      .page-resources-33win01-why-more-and-more-users-are-choosing-them__card-title {
        font-size: 1.3em;
      }

      .page-resources-33win01-why-more-and-more-users-are-choosing-them__faq-question {
        font-size: 1.1em;
        padding: 12px 15px;
      }

      .page-resources-33win01-why-more-and-more-users-are-choosing-them__faq-toggle {
        font-size: 1.5em;
      }

      .page-resources-33win01-why-more-and-more-users-are-choosing-them__faq-answer {
        padding: 0 10px;
      }

      .page-resources-33win01-why-more-and-more-users-are-choosing-them__faq-item.active .page-resources-33win01-why-more-and-more-users-are-choosing-them__faq-answer {
        padding: 15px 10px !important;
      }
      
      /* Image responsiveness for mobile */
      .page-resources-33win01-why-more-and-more-users-are-choosing-them__image {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-resources-33win01-why-more-and-more-users-are-choosing-them__image-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  