
    :root {
      --page-bg-color: #f8f9fa;
      --primary-color: #007bff; /* Blue */
      --secondary-color: #6c757d; /* Grey */
      --text-color: #343a40; /* Dark grey */
      --heading-color: #212529; /* Even darker grey */
      --border-color: #dee2e6;
      --light-bg: #e9ecef;
      --white: #ffffff;
      --shadow-light: rgba(0, 0, 0, 0.1);
    }

    .page-resources-mb66-user-experience-story-vietnam {
      font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--page-bg-color);
      padding: 20px 0;
      margin: 0 auto;
      max-width: 1200px;
    }

    .page-resources-mb66-user-experience-story-vietnam__container {
      max-width: 960px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-resources-mb66-user-experience-story-vietnam__hero-section {
      background-color: var(--light-bg);
      padding: 10px 0 40px; /* Added padding-top to account for fixed header */
      text-align: center;
      margin-bottom: 40px;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
    }
    @media (max-width: 768px) {
      .page-resources-mb66-user-experience-story-vietnam__hero-section {
        padding-top: 10px !important; /* Mobile specific padding-top */
      }
    }

    .page-resources-mb66-user-experience-story-vietnam__hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 20px;
    }
    @media (max-width: 768px) {
      .page-resources-mb66-user-experience-story-vietnam__hero-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    .page-resources-mb66-user-experience-story-vietnam__hero-title {
      color: var(--heading-color);
      font-size: 2.5em;
      margin-bottom: 15px;
      font-weight: 700;
    }
    @media (max-width: 768px) {
      .page-resources-mb66-user-experience-story-vietnam__hero-title {
        font-size: 1.8em;
      }
    }

    .page-resources-mb66-user-experience-story-vietnam__hero-subtitle {
      color: var(--secondary-color);
      font-size: 1.2em;
      margin-bottom: 20px;
    }
    @media (max-width: 768px) {
      .page-resources-mb66-user-experience-story-vietnam__hero-subtitle {
        font-size: 1em;
      }
    }

    .page-resources-mb66-user-experience-story-vietnam__section {
      background-color: var(--white);
      padding: 30px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px var(--shadow-light);
    }

    .page-resources-mb66-user-experience-story-vietnam__section-title {
      color: var(--primary-color);
      font-size: 2em;
      margin-bottom: 20px;
      border-bottom: 2px solid var(--primary-color);
      padding-bottom: 10px;
      font-weight: 600;
    }
    @media (max-width: 768px) {
      .page-resources-mb66-user-experience-story-vietnam__section-title {
        font-size: 1.5em;
      }
    }

    .page-resources-mb66-user-experience-story-vietnam__paragraph {
      margin-bottom: 15px;
      font-size: 1em;
      color: var(--text-color);
    }

    .page-resources-mb66-user-experience-story-vietnam__list {
      list-style: disc inside;
      margin-left: 20px;
      margin-bottom: 15px;
      padding: 0;
    }

    .page-resources-mb66-user-experience-story-vietnam__list-item {
      margin-bottom: 8px;
      box-sizing: border-box; /* Required for list items */
      word-wrap: break-word; /* Required for text wrapping */
      overflow-wrap: break-word; /* Required for text wrapping */
      word-break: break-word; /* Required for long keywords */
      color: var(--text-color); /* Ensure text color contrast */
    }

    .page-resources-mb66-user-experience-story-vietnam__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin: 25px 0;
      border-radius: 8px;
    }

    .page-resources-mb66-user-experience-story-vietnam__content-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
      object-fit: cover;
    }
    @media (max-width: 768px) {
      .page-resources-mb66-user-experience-story-vietnam__content-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    .page-resources-mb66-user-experience-story-vietnam__cta-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--white);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: 20px;
      cursor: pointer; /* Indicate it's clickable, even without link */
      border: none;
      font-size: 1em;
    }

    .page-resources-mb66-user-experience-story-vietnam__cta-button:hover {
      background-color: #0056b3; /* Darker blue */
    }

    /* Mobile responsiveness for lists */
    @media (max-width: 768px) {
      .page-resources-mb66-user-experience-story-vietnam__list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Adjust padding for smaller screens */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-resources-mb66-user-experience-story-vietnam__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 10px !important; /* Ensure content is not too close to edge */
        padding-right: 10px !important;
      }
    }
  