
    /* Global styles for this page only */
    .page-resources-faq-about-kv888-in-vietnam {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding: 10px 0 40px; /* Added padding-top for fixed header clearance */
    }

    .page-resources-faq-about-kv888-in-vietnam__container {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .page-resources-faq-about-kv888-in-vietnam__hero-section {
      background-color: #0a244d; /* Dark blue, contrasting well with text */
      color: #ffffff;
      padding: 60px 20px;
      text-align: center;
      margin-bottom: 30px;
      border-radius: 8px;
    }

    .page-resources-faq-about-kv888-in-vietnam__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffd700; /* Gold for highlight */
      font-weight: bold;
    }

    .page-resources-faq-about-kv888-in-vietnam__hero-description {
      font-size: 1.1em;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.8;
    }

    .page-resources-faq-about-kv888-in-vietnam__text-highlight {
        color: #ffd700; /* Gold color for highlighted text/links */
        font-weight: bold;
        text-decoration: none;
    }

    .page-resources-faq-about-kv888-in-vietnam__text-highlight:hover {
        text-decoration: underline;
    }

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

    .page-resources-faq-about-kv888-in-vietnam__section-title {
      font-size: 2em;
      color: #0a244d;
      margin-bottom: 25px;
      text-align: center;
      position: relative;
      padding-bottom: 10px;
    }

    .page-resources-faq-about-kv888-in-vietnam__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background-color: #ffd700;
      border-radius: 2px;
    }

    .page-resources-faq-about-kv888-in-vietnam__faq-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-resources-faq-about-kv888-in-vietnam__faq-item {
      background-color: #ffffff;
      border: 1px solid #e0e0e0;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
    }

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

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

    .page-resources-faq-about-kv888-in-vietnam__faq-question h3 {
      margin: 0;
      padding: 0;
      font-size: 1.1em;
      color: #0a244d;
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-resources-faq-about-kv888-in-vietnam__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: #ffd700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents text selection from interfering with click */
    }

    .page-resources-faq-about-kv888-in-vietnam__faq-item.active .page-resources-faq-about-kv888-in-vietnam__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

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

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

    .page-resources-faq-about-kv888-in-vietnam__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
    }
    .page-resources-faq-about-kv888-in-vietnam__faq-answer ul {
      margin-top: 0;
      margin-bottom: 10px;
      padding-left: 25px;
    }
    .page-resources-faq-about-kv888-in-vietnam__faq-answer li {
      margin-bottom: 5px;
    }

    .page-resources-faq-about-kv888-in-vietnam__image-wrapper {
      margin: 30px 0;
      text-align: center;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-resources-faq-about-kv888-in-vietnam__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      display: block; /* Ensures image does not have extra space below it */
      margin: 0 auto;
    }

    .page-resources-faq-about-kv888-in-vietnam__info-text {
      font-size: 0.95em;
      color: #777;
      text-align: center;
      margin-top: 20px;
      padding: 0 15px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-resources-faq-about-kv888-in-vietnam {
        padding: 10px 0 30px; /* Adjust padding-top for mobile fixed header clearance */
      }

      .page-resources-faq-about-kv888-in-vietnam__hero-section {
        padding: 40px 15px;
        margin-bottom: 20px;
      }

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

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

      .page-resources-faq-about-kv888-in-vietnam__content-section {
        padding: 20px;
      }

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

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

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

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

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

      .page-resources-faq-about-kv888-in-vietnam__image {
        max-width: 100% !important; /* Ensure responsive for mobile */
        height: auto !important; /* Ensure responsive for mobile */
      }
    }
  