
    /* Tổng quan cho trang FAQ */
    .page-resources-faq-about-f16878vip-in-vietnam {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #f9f9f9;
      box-sizing: border-box;
      padding-top: 80px; /* Đảm bảo nội dung không bị che bởi header cố định */
    }

    @media (max-width: 768px) {
      .page-resources-faq-about-f16878vip-in-vietnam {
        padding: 15px;
        padding-top: 70px; /* Điều chỉnh cho di động */
      }
    }

    .page-resources-faq-about-f16878vip-in-vietnam__header {
      text-align: center;
      margin-bottom: 40px;
      background-color: #ffffff;
      padding: 30px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .page-resources-faq-about-f16878vip-in-vietnam__title {
      color: #0056b3;
      font-size: 2.5em;
      margin-bottom: 15px;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .page-resources-faq-about-f16878vip-in-vietnam__title {
        font-size: 1.8em;
      }
    }

    .page-resources-faq-about-f16878vip-in-vietnam__description {
      font-size: 1.1em;
      color: #555;
      max-width: 800px;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .page-resources-faq-about-f16878vip-in-vietnam__description {
        font-size: 1em;
      }
    }

    .page-resources-faq-about-f16878vip-in-vietnam__faq-section {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    @media (max-width: 768px) {
      .page-resources-faq-about-f16878vip-in-vietnam__faq-section {
        padding: 20px;
      }
    }

    .page-resources-faq-about-f16878vip-in-vietnam__faq-item {
      margin-bottom: 15px;
      border: 1px solid #eee;
      border-radius: 6px;
      overflow: hidden;
    }

    .page-resources-faq-about-f16878vip-in-vietnam__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #e0f2f7;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-resources-faq-about-f16878vip-in-vietnam__faq-question:hover {
      background-color: #c0e0e7;
    }

    .page-resources-faq-about-f16878vip-in-vietnam__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #0056b3;
      flex-grow: 1;
      pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    @media (max-width: 768px) {
      .page-resources-faq-about-f16878vip-in-vietnam__faq-question h3 {
        font-size: 1em;
      }
    }

    .page-resources-faq-about-f16878vip-in-vietnam__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      color: #0056b3;
      pointer-events: none; /* Ngăn chặn toggle icon chặn sự kiện click */
      transition: transform 0.3s ease;
    }

    .page-resources-faq-about-f16878vip-in-vietnam__faq-item.active .page-resources-faq-about-f16878vip-in-vietnam__faq-toggle {
      transform: rotate(45deg); /* Biến + thành X hoặc - */
    }

    .page-resources-faq-about-f16878vip-in-vietnam__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: #fcfcfc;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #444;
    }

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

    .page-resources-faq-about-f16878vip-in-vietnam__faq-answer p {
      margin: 0;
      padding-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-resources-faq-about-f16878vip-in-vietnam__faq-answer p:last-child {
      padding-bottom: 0;
    }

    /* Các phần tử hình ảnh */
    .page-resources-faq-about-f16878vip-in-vietnam__image-container {
      margin: 30px 0;
      text-align: center;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-resources-faq-about-f16878vip-in-vietnam__image-container img {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      object-fit: cover;
      min-width: 200px; /* Đảm bảo không có ảnh nhỏ */
      min-height: 200px; /* Đảm bảo không có ảnh nhỏ */
      box-sizing: border-box; /* Quan trọng cho responsive */
    }

    @media (max-width: 768px) {
      .page-resources-faq-about-f16878vip-in-vietnam__image-container {
        margin: 20px 0;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }
      .page-resources-faq-about-f16878vip-in-vietnam__image-container img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    /* Đảm bảo link không bị che */
    .page-resources-faq-about-f16878vip-in-vietnam a {
      color: #007bff;
      text-decoration: none;
      font-weight: bold;
    }

    .page-resources-faq-about-f16878vip-in-vietnam a:hover {
      text-decoration: underline;
    }

    /* Responsive cho danh sách (nếu có) - áp dụng cho mọi li trong phạm vi */
    .page-resources-faq-about-f16878vip-in-vietnam ul,
    .page-resources-faq-about-f16878vip-in-vietnam ol {
      padding-left: 20px;
      margin-bottom: 15px;
    }

    .page-resources-faq-about-f16878vip-in-vietnam ul li,
    .page-resources-faq-about-f16878vip-in-vietnam ol li {
      margin-bottom: 8px;
      box-sizing: border-box; /* Quan trọng cho responsive */
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    @media (max-width: 768px) {
      .page-resources-faq-about-f16878vip-in-vietnam ul,
      .page-resources-faq-about-f16878vip-in-vietnam ol {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-resources-faq-about-f16878vip-in-vietnam ul li,
      .page-resources-faq-about-f16878vip-in-vietnam ol li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 5px 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }
  