
    :root {
      --page-primary-color: #0056b3;
      --page-secondary-color: #007bff;
      --page-text-color: #333;
      --page-light-text-color: #f8f9fa;
      --page-background-color: #f4f7f6;
      --page-card-background: #ffffff;
      --page-border-color: #e0e0e0;
      --page-accent-color: #ffc107;
    }

    .page-resources-faq-about-tk88-in-vietnam {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-text-color);
      background-color: var(--page-background-color);
      padding: 20px 0;
      min-height: 80vh;
      direction: ltr;
    }

    .page-resources-faq-about-tk88-in-vietnam__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 10px 20px; /* Adjusted padding-top for fixed header */
      box-sizing: border-box;
    }

    .page-resources-faq-about-tk88-in-vietnam__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, var(--page-primary-color) 0%, var(--page-secondary-color) 100%);
      color: var(--page-light-text-color);
      margin-bottom: 30px;
      border-radius: 8px;
    }

    .page-resources-faq-about-tk88-in-vietnam__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      font-weight: 700;
      color: var(--page-light-text-color);
    }

    .page-resources-faq-about-tk88-in-vietnam__hero-description {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto;
      opacity: 0.9;
    }

    .page-resources-faq-about-tk88-in-vietnam__section-title {
      font-size: 2em;
      color: var(--page-primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-weight: 600;
    }

    .page-resources-faq-about-tk88-in-vietnam__faq-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .page-resources-faq-about-tk88-in-vietnam__faq-item {
      background-color: var(--page-card-background);
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      border: 1px solid var(--page-border-color);
    }

    .page-resources-faq-about-tk88-in-vietnam__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--page-card-background);
      border-bottom: 1px solid transparent;
      transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
      user-select: none;
    }

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

    .page-resources-faq-about-tk88-in-vietnam__faq-item.active .page-resources-faq-about-tk88-in-vietnam__faq-question {
      border-bottom-color: var(--page-border-color);
    }

    .page-resources-faq-about-tk88-in-vietnam__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--page-primary-color);
      font-weight: 600;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-resources-faq-about-tk88-in-vietnam__faq-toggle {
      font-size: 1.8em;
      font-weight: 700;
      color: var(--page-secondary-color);
      line-height: 1;
      width: 30px;
      text-align: center;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-resources-faq-about-tk88-in-vietnam__faq-item.active .page-resources-faq-about-tk88-in-vietnam__faq-toggle {
      transform: rotate(45deg); /* Plus to X for active state */
    }

    .page-resources-faq-about-tk88-in-vietnam__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      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-faq-about-tk88-in-vietnam__faq-item.active .page-resources-faq-about-tk88-in-vietnam__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }

    .page-resources-faq-about-tk88-in-vietnam__content-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      margin-top: 20px;
      margin-bottom: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      object-fit: cover;
    }

    .page-resources-faq-about-tk88-in-vietnam__promo-section {
      text-align: center;
      padding: 40px 20px;
      background-color: var(--page-accent-color);
      border-radius: 8px;
      margin-top: 40px;
      color: var(--page-text-color);
    }

    .page-resources-faq-about-tk88-in-vietnam__promo-title {
      font-size: 1.8em;
      margin-bottom: 15px;
      color: var(--page-primary-color);
    }

    .page-resources-faq-about-tk88-in-vietnam__promo-button {
      display: inline-block;
      background-color: var(--page-secondary-color);
      color: var(--page-light-text-color);
      padding: 12px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

    .page-resources-faq-about-tk88-in-vietnam__promo-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    .page-resources-faq-about-tk88-in-vietnam__external-link {
      color: var(--page-secondary-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-resources-faq-about-tk88-in-vietnam__external-link:hover {
      color: var(--page-primary-color);
      text-decoration: underline;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-resources-faq-about-tk88-in-vietnam__container {
        padding: 10px 15px; /* Adjusted padding-top for fixed header */
      }

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

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

      .page-resources-faq-about-tk88-in-vietnam__section-title {
        font-size: 1.8em;
      }

      .page-resources-faq-about-tk88-in-vietnam__faq-question {
        padding: 15px 20px;
      }

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

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

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

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

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

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