
    /* CSS Styles for page-resources-faq-about-68gb-in-vietnam */
    .page-resources-faq-about-68gb-in-vietnam {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      padding-top: 10px; /* Adjust for fixed header */
      box-sizing: border-box;
    }

    .page-resources-faq-about-68gb-in-vietnam__section {
      margin-bottom: 40px;
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-resources-faq-about-68gb-in-vietnam__title {
      color: #0056b3;
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
    }

    .page-resources-faq-about-68gb-in-vietnam__intro-paragraph {
      text-align: center;
      margin-bottom: 40px;
      font-size: 1.1em;
      color: #555;
    }

    .page-resources-faq-about-68gb-in-vietnam__faq-container {
      margin-top: 30px;
    }

    .page-resources-faq-about-68gb-in-vietnam__faq-item {
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .page-resources-faq-about-68gb-in-vietnam__faq-item.active {
      border-color: #007bff;
      box-shadow: 0 0 15px rgba(0, 123, 255, 0.1);
    }

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

    .page-resources-faq-about-68gb-in-vietnam__faq-question:hover {
      background-color: #e9ecef;
    }

    .page-resources-faq-about-68gb-in-vietnam__faq-question h2 {
      margin: 0;
      font-size: 1.25em;
      color: #333;
      flex-grow: 1;
      pointer-events: none; /* Prevent h2 from blocking click on parent div */
    }

    .page-resources-faq-about-68gb-in-vietnam__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      margin-left: 15px;
      pointer-events: none; /* Prevent toggle icon from blocking click on parent div */
      transition: transform 0.3s ease;
    }

    .page-resources-faq-about-68gb-in-vietnam__faq-item.active .page-resources-faq-about-68gb-in-vietnam__faq-toggle {
      transform: rotate(45deg); /* Change + to X (rotated +) */
      color: #dc3545;
    }

    .page-resources-faq-about-68gb-in-vietnam__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #ffffff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
      color: #666;
    }

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

    .page-resources-faq-about-68gb-in-vietnam__faq-answer p {
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-resources-faq-about-68gb-in-vietnam__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-top: 20px;
      margin-bottom: 20px;
      text-align: center;
    }

    .page-resources-faq-about-68gb-in-vietnam__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      display: block; /* Ensures image takes full width of its container */
      margin: 0 auto;
    }

    .page-resources-faq-about-68gb-in-vietnam__cta-button {
      display: block;
      width: fit-content;
      margin: 30px auto 0 auto;
      padding: 15px 30px;
      background-color: #28a745; /* Green for action */
      color: #fff;
      text-decoration: none;
      border-radius: 50px;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      border: none;
      cursor: pointer;
    }

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

    .page-resources-faq-about-68gb-in-vietnam__info-box {
      background-color: #e7f3ff;
      border-left: 5px solid #007bff;
      padding: 20px;
      margin: 30px 0;
      border-radius: 5px;
      color: #333;
    }

    .page-resources-faq-about-68gb-in-vietnam__info-box h3 {
      color: #0056b3;
      margin-top: 0;
      font-size: 1.4em;
    }

    .page-resources-faq-about-68gb-in-vietnam__info-box p {
      margin-bottom: 0;
    }

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

      .page-resources-faq-about-68gb-in-vietnam__title {
        font-size: 1.8em;
        margin-bottom: 20px;
      }

      .page-resources-faq-about-68gb-in-vietnam__intro-paragraph {
        font-size: 1em;
        margin-bottom: 30px;
      }

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

      .page-resources-faq-about-68gb-in-vietnam__faq-question h2 {
        font-size: 1.1em;
      }

      .page-resources-faq-about-68gb-in-vietnam__faq-toggle {
        font-size: 1.5em;
      }

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

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

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

      .page-resources-faq-about-68gb-in-vietnam__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .page-resources-faq-about-68gb-in-vietnam__title {
        font-size: 1.5em;
      }
      .page-resources-faq-about-68gb-in-vietnam__faq-question h2 {
        font-size: 1em;
      }
    }
  