
    /* CSS Styles for page-resources-faq-about-mb66-in-vietnam */
    .page-resources-faq-about-mb66-in-vietnam {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f9f9f9;
        padding-bottom: 40px;
    }

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

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

    .page-resources-faq-about-mb66-in-vietnam__hero-section {
        text-align: center;
        padding: 60px 20px;
        background-color: #0056b3;
        color: #fff;
        margin-bottom: 30px;
        border-radius: 8px;
        padding-top: 70px; /* Ensure content is below fixed header */
    }

    @media (max-width: 768px) {
        .page-resources-faq-about-mb66-in-vietnam__hero-section {
            padding: 40px 15px;
            padding-top: 60px; /* Mobile adjustment */
        }
    }

    .page-resources-faq-about-mb66-in-vietnam__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        font-weight: bold;
        color: #fff;
    }

    @media (max-width: 768px) {
        .page-resources-faq-about-mb66-in-vietnam__hero-title {
            font-size: 2em;
        }
    }

    .page-resources-faq-about-mb66-in-vietnam__hero-description {
        font-size: 1.2em;
        max-width: 800px;
        margin: 0 auto;
        color: #e0e0e0;
    }

    @media (max-width: 768px) {
        .page-resources-faq-about-mb66-in-vietnam__hero-description {
            font-size: 1em;
        }
    }

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

    .page-resources-faq-about-mb66-in-vietnam__section-title {
        font-size: 2em;
        color: #0056b3;
        margin-bottom: 25px;
        text-align: center;
        border-bottom: 2px solid #eee;
        padding-bottom: 15px;
    }

    @media (max-width: 768px) {
        .page-resources-faq-about-mb66-in-vietnam__section-title {
            font-size: 1.6em;
        }
    }

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

    .page-resources-faq-about-mb66-in-vietnam__faq-list {
        margin-top: 30px;
    }

    .page-resources-faq-about-mb66-in-vietnam__faq-item {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        overflow: hidden;
    }

    .page-resources-faq-about-mb66-in-vietnam__faq-question {
        background-color: #eaf4ff;
        padding: 15px 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s ease;
        color: #0056b3;
        font-weight: bold;
    }

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

    .page-resources-faq-about-mb66-in-vietnam__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    @media (max-width: 768px) {
        .page-resources-faq-about-mb66-in-vietnam__faq-question h3 {
            font-size: 1em;
        }
    }

    .page-resources-faq-about-mb66-in-vietnam__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        margin-left: 10px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click */
    }

    .page-resources-faq-about-mb66-in-vietnam__faq-item.active .page-resources-faq-about-mb66-in-vietnam__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' or similar visual */
    }

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

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

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

    .page-resources-faq-about-mb66-in-vietnam__faq-answer ul {
        list-style-type: disc;
        margin-left: 20px;
        margin-bottom: 10px;
    }

    .page-resources-faq-about-mb66-in-vietnam__faq-answer ol {
        list-style-type: decimal;
        margin-left: 20px;
        margin-bottom: 10px;
    }

    .page-resources-faq-about-mb66-in-vietnam__faq-answer li {
        margin-bottom: 5px;
    }

    .page-resources-faq-about-mb66-in-vietnam__image-wrapper {
        text-align: center;
        margin: 30px 0;
    }

    .page-resources-faq-about-mb66-in-vietnam__image {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 768px) {
        .page-resources-faq-about-mb66-in-vietnam__image-wrapper {
            margin: 20px 0;
        }
        .page-resources-faq-about-mb66-in-vietnam__image {
            width: 100% !important;
            max-width: 100% !important;
            height: auto !important;
        }
    }

    .page-resources-faq-about-mb66-in-vietnam__button {
        display: inline-block;
        background-color: #007bff;
        color: #fff;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        margin-top: 20px;
        cursor: pointer; /* Use cursor pointer for button-like divs */
        border: none;
        font-size: 1em;
    }

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

    .page-resources-faq-about-mb66-in-vietnam__highlight {
        color: #007bff;
        font-weight: bold;
    }

    .page-resources-faq-about-mb66-in-vietnam__promo-link {
        color: #007bff;
        text-decoration: none;
        font-weight: bold;
    }
    .page-resources-faq-about-mb66-in-vietnam__promo-link:hover {
        text-decoration: underline;
    }
  