
    /* CSS cho trang 567 com */
    .page-567-com {
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f5f5f5;
      line-height: 1.6;
      padding-bottom: 80px; /* Khoảng trống cho nút nổi */
    }

    .page-567-com__section {
      padding: 40px 20px;
      margin: 0 auto;
      max-width: 1200px;
      box-sizing: border-box;
      background-color: #ffffff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-567-com__section--hero {
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #ffffff;
      text-align: center;
      padding: 60px 20px;
      border-radius: 0;
      margin-bottom: 0;
      box-shadow: none;
      padding-top: 70px; /* Thêm khoảng trống nhỏ dưới header */
    }

    .page-567-com__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: bold;
      color: #ffffff;
    }

    .page-567-com__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #e0e0e0;
    }

    .page-567-com__promo-link {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 12px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-567-com__promo-link:hover {
      background-color: #e0a800;
    }

    .page-567-com__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      padding: 10px 0;
      display: flex;
      justify-content: space-around;
      align-items: center;
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-567-com__button {
      background-color: #28a745;
      color: #fff;
      padding: 12px 25px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease;
      font-weight: bold;
      text-align: center;
      display: block;
      width: 45%; /* Để cân đối 2 nút */
      box-sizing: border-box;
    }

    .page-567-com__button--login {
      background-color: #007bff;
    }

    .page-567-com__button:hover {
      opacity: 0.9;
    }

    .page-567-com__heading {
      text-align: center;
      font-size: 2.2em;
      margin-bottom: 30px;
      color: #0056b3;
      font-weight: bold;
    }

    .page-567-com__product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      justify-content: center;
      padding: 0 20px;
    }

    .page-567-com__product-item {
      background-color: #fefefe;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .page-567-com__product-item:hover {
      transform: translateY(-5px);
    }

    .page-567-com__product-image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      height: 200px; /* Cố định chiều cao cho hình ảnh */
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .page-567-com__product-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .page-567-com__product-content {
      padding: 20px;
    }

    .page-567-com__product-title {
      font-size: 1.5em;
      margin-bottom: 10px;
      color: #0056b3;
      font-weight: bold;
    }

    .page-567-com__product-description {
      font-size: 0.95em;
      color: #555;
      margin-bottom: 15px;
    }

    .page-567-com__feature-list {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      padding: 0;
      list-style: none;
      margin: 0;
    }

    .page-567-com__feature-item {
      background-color: #e9f5ff;
      border: 1px solid #cce5ff;
      border-radius: 8px;
      padding: 25px;
      flex: 1 1 calc(33% - 40px);
      box-sizing: border-box;
      text-align: center;
      min-width: 280px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-567-com__feature-title {
      font-size: 1.4em;
      color: #0056b3;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-567-com__feature-description {
      font-size: 0.9em;
      color: #444;
    }

    .page-567-com__promo-banner {
      background-color: #ffedd5;
      border: 1px solid #ffcc80;
      padding: 30px;
      border-radius: 8px;
      text-align: center;
    }

    .page-567-com__promo-title {
      font-size: 2em;
      color: #e65100;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-567-com__promo-text {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 20px;
    }

    .page-567-com__faq-list {
      max-width: 800px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
    }

    .page-567-com__faq-item {
      background-color: #fefefe;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .page-567-com__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f9f9f9;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-567-com__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-567-com__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #0056b3;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
    }

    .page-567-com__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #0056b3;
      transition: transform 0.3s ease;
      pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
    }

    .page-567-com__faq-item.active .page-567-com__faq-toggle {
      transform: rotate(45deg); /* Xoay dấu + thành X hoặc - */
    }

    .page-567-com__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;
      color: #444;
      font-size: 0.95em;
    }

    .page-567-com__faq-item.active .page-567-com__faq-answer {
      max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-567-com__cta-section {
      text-align: center;
      background-color: #007bff;
      color: #fff;
      padding: 50px 20px;
      border-radius: 8px;
    }

    .page-567-com__cta-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-567-com__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-567-com__cta-button {
      background-color: #ffc107;
      color: #333;
      padding: 15px 40px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease;
    }

    .page-567-com__cta-button:hover {
      background-color: #e0a800;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-567-com__section {
        padding: 25px 15px;
      }

      .page-567-com__section--hero {
        padding: 50px 15px;
        padding-top: 60px;
      }

      .page-567-com__hero-title {
        font-size: 2em;
      }

      .page-567-com__hero-subtitle {
        font-size: 1.1em;
      }

      .page-567-com__heading {
        font-size: 1.8em;
      }

      .page-567-com__product-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
      }

      .page-567-com__product-image-wrapper {
        height: 180px;
      }

      .page-567-com__feature-item {
        flex: 1 1 100%;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px;
      }

      .page-567-com__feature-list {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
      }

      .page-567-com__feature-description {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-567-com__promo-title {
        font-size: 1.6em;
      }

      .page-567-com__promo-text {
        font-size: 1em;
      }

      .page-567-com__faq-question h3 {
        font-size: 1em;
      }

      .page-567-com__faq-answer {
        font-size: 0.85em;
      }

      .page-567-com__cta-title {
        font-size: 2em;
      }

      .page-567-com__cta-description {
        font-size: 1em;
      }

      .page-567-com__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
      }

      .page-567-com__product-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-567-com__product-image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  