
    /* CSS cho trang Câu hỏi thường gặp về vf555 tại Việt Nam */
    .page-resources-faq-about-vf555-in-vietnam {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      padding: 10px 0; /* Đảm bảo không bị che bởi header cố định */
      max-width: 1200px;
      margin: 0 auto;
      box-sizing: border-box;
    }

    .page-resources-faq-about-vf555-in-vietnam__container {
      padding: 20px;
      background-color: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      margin: 20px;
    }

    .page-resources-faq-about-vf555-in-vietnam__hero-section {
      text-align: center;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
    }

    .page-resources-faq-about-vf555-in-vietnam__hero-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 8px;
    }

    .page-resources-faq-about-vf555-in-vietnam__hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
      text-align: center;
    }

    .page-resources-faq-about-vf555-in-vietnam__hero-title {
      color: #fff;
      font-size: 2.8em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-resources-faq-about-vf555-in-vietnam__hero-description {
      color: #eee;
      font-size: 1.2em;
      max-width: 800px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .page-resources-faq-about-vf555-in-vietnam__section-title {
      font-size: 2.2em;
      color: #0056b3;
      text-align: center;
      margin-bottom: 30px;
      padding-top: 20px;
      border-bottom: 2px solid #007bff;
      padding-bottom: 10px;
    }

    .page-resources-faq-about-vf555-in-vietnam__intro-paragraph {
      font-size: 1.1em;
      margin-bottom: 30px;
      text-align: justify;
      color: #555;
    }

    .page-resources-faq-about-vf555-in-vietnam__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .page-resources-faq-about-vf555-in-vietnam__faq-item {
      background-color: #ffffff;
      border: 1px solid #ddd;
      border-radius: 6px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .page-resources-faq-about-vf555-in-vietnam__faq-item:hover {
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

    .page-resources-faq-about-vf555-in-vietnam__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #007bff;
      color: #ffffff;
      cursor: pointer;
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-resources-faq-about-vf555-in-vietnam__faq-question:hover {
      background-color: #0056b3;
    }

    .page-resources-faq-about-vf555-in-vietnam__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      color: #ffffff;
      pointer-events: none; /* Prevent h3 from blocking click event on parent */
    }

    .page-resources-faq-about-vf555-in-vietnam__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      pointer-events: none; /* Prevent toggle icon from blocking click event on parent */
    }

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

    .page-resources-faq-about-vf555-in-vietnam__faq-item.active .page-resources-faq-about-vf555-in-vietnam__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px !important;
      opacity: 1;
    }

    .page-resources-faq-about-vf555-in-vietnam__faq-item.active .page-resources-faq-about-vf555-in-vietnam__faq-question {
      background-color: #0056b3;
    }

    .page-resources-faq-about-vf555-in-vietnam__faq-answer p {
      margin-bottom: 10px;
    }

    .page-resources-faq-about-vf555-in-vietnam__faq-answer a {
      color: #007bff;
      text-decoration: none;
      font-weight: bold;
    }

    .page-resources-faq-about-vf555-in-vietnam__faq-answer a:hover {
      text-decoration: underline;
    }

    .page-resources-faq-about-vf555-in-vietnam__cta-section {
      text-align: center;
      margin-top: 50px;
      padding: 30px;
      background-color: #e9f7ff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-resources-faq-about-vf555-in-vietnam__cta-title {
      font-size: 1.8em;
      color: #007bff;
      margin-bottom: 15px;
    }

    .page-resources-faq-about-vf555-in-vietnam__cta-description {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 25px;
    }

    .page-resources-faq-about-vf555-in-vietnam__cta-button {
      display: inline-block;
      padding: 12px 30px;
      background-color: #28a745;
      color: #ffffff;
      border-radius: 5px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-resources-faq-about-vf555-in-vietnam__cta-button:hover {
      background-color: #218838;
      transform: translateY(-2px);
    }

    .page-resources-faq-about-vf555-in-vietnam__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-resources-faq-about-vf555-in-vietnam__content-image {
      width: 100%;
      height: auto;
      display: block;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      object-fit: cover;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-resources-faq-about-vf555-in-vietnam {
        padding: 10px 0; /* Đảm bảo không bị che bởi header cố định trên mobile */
      }

      .page-resources-faq-about-vf555-in-vietnam__container {
        margin: 10px;
        padding: 15px;
      }

      .page-resources-faq-about-vf555-in-vietnam__hero-title {
        font-size: 2em;
      }

      .page-resources-faq-about-vf555-in-vietnam__hero-description {
        font-size: 1em;
      }

      .page-resources-faq-about-vf555-in-vietnam__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

      .page-resources-faq-about-vf555-in-vietnam__intro-paragraph {
        font-size: 0.95em;
      }

      .page-resources-faq-about-vf555-in-vietnam__faq-question {
        padding: 12px 15px;
        font-size: 1em;
      }

      .page-resources-faq-about-vf555-in-vietnam__faq-question h3 {
        font-size: 1em;
      }

      .page-resources-faq-about-vf555-in-vietnam__faq-answer {
        padding: 0 15px;
      }

      .page-resources-faq-about-vf555-in-vietnam__faq-item.active .page-resources-faq-about-vf555-in-vietnam__faq-answer {
        padding: 15px !important;
      }

      .page-resources-faq-about-vf555-in-vietnam__cta-title {
        font-size: 1.5em;
      }

      .page-resources-faq-about-vf555-in-vietnam__cta-description {
        font-size: 0.95em;
      }

      .page-resources-faq-about-vf555-in-vietnam__cta-button {
        padding: 10px 20px;
        font-size: 1em;
      }

      .page-resources-faq-about-vf555-in-vietnam__content-image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-resources-faq-about-vf555-in-vietnam__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }
    }
  