
        /* style/latest-news-industry-regulatory-changes.css */
        /* body đã padding-top: var(--header-offset); trang này không cần thêm padding-top */

        :root {
            --primary-color: #2563eb;
            --secondary-color: #64748b;
            --text-color-dark: #333333;
            --text-color-light: #ffffff;
            --bg-color-light: #f8f9fa;
            --border-color: #e0e0e0;
        }

        .page-latest-news-industry-regulatory-changes {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-color-dark);
            background-color: var(--bg-color-light);
        }

        .page-latest-news-industry-regulatory-changes__hero-section {
            position: relative;
            padding: 40px 20px;
            padding-top: 10px; /* Nhỏ để bù trừ cho header, body đã có padding-top */
            background-color: var(--primary-color);
            color: var(--text-color-light);
            text-align: center;
            overflow: hidden;
        }

        .page-latest-news-industry-regulatory-changes__hero-image-wrapper {
            max-width: 100%;
            height: auto;
            margin: 0 auto 20px auto;
        }

        .page-latest-news-industry-regulatory-changes__hero-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            object-fit: cover;
        }

        .page-latest-news-industry-regulatory-changes__hero-content {
            max-width: 900px;
            margin: 0 auto;
            z-index: 1;
            position: relative;
        }

        .page-latest-news-industry-regulatory-changes__hero-title {
            font-size: 2.8em;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: var(--text-color-light);
        }

        .page-latest-news-industry-regulatory-changes__hero-description {
            font-size: 1.2em;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .page-latest-news-industry-regulatory-changes__main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .page-latest-news-industry-regulatory-changes__section {
            margin-bottom: 40px;
        }

        .page-latest-news-industry-regulatory-changes__section-title {
            font-size: 2.2em;
            color: var(--primary-color);
            margin-bottom: 20px;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 10px;
        }

        .page-latest-news-industry-regulatory-changes__sub-section-title {
            font-size: 1.6em;
            color: var(--secondary-color);
            margin-top: 25px;
            margin-bottom: 15px;
        }

        .page-latest-news-industry-regulatory-changes__paragraph {
            margin-bottom: 15px;
            font-size: 1.05em;
            line-height: 1.7;
        }

        .page-latest-news-industry-regulatory-changes__list {
            list-style-type: disc;
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .page-latest-news-industry-regulatory-changes__list-item {
            margin-bottom: 8px;
        }

        .page-latest-news-industry-regulatory-changes__image-container {
            margin: 30px 0;
            text-align: center;
        }

        .page-latest-news-industry-regulatory-changes__content-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .page-latest-news-industry-regulatory-changes__cta-section {
            background-color: var(--primary-color);
            color: var(--text-color-light);
            padding: 60px 20px;
            text-align: center;
            border-radius: 8px;
            margin-top: 40px;
        }

        .page-latest-news-industry-regulatory-changes__cta-title {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: var(--text-color-light);
        }

        .page-latest-news-industry-regulatory-changes__cta-description {
            font-size: 1.1em;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .page-latest-news-industry-regulatory-changes__button-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .page-latest-news-industry-regulatory-changes__btn-primary,
        .page-latest-news-industry-regulatory-changes__btn-secondary {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
            box-sizing: border-box;
            max-width: 100%;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-latest-news-industry-regulatory-changes__btn-primary {
            background-color: var(--secondary-color);
            color: var(--text-color-light);
            border: 2px solid var(--secondary-color);
        }

        .page-latest-news-industry-regulatory-changes__btn-primary:hover {
            background-color: #4a576b;
            border-color: #4a576b;
        }

        .page-latest-news-industry-regulatory-changes__btn-secondary {
            background-color: var(--text-color-light);
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .page-latest-news-industry-regulatory-changes__btn-secondary:hover {
            background-color: #e6e6e6;
            color: #1c4eac;
            border-color: #1c4eac;
        }

        .page-latest-news-industry-regulatory-changes__faq-section {
            margin-top: 60px;
            background-color: #ffffff;
            padding: 40px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .page-latest-news-industry-regulatory-changes__faq-title {
            font-size: 2.2em;
            color: var(--primary-color);
            margin-bottom: 30px;
            text-align: center;
        }

        .page-latest-news-industry-regulatory-changes__faq-item {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .page-latest-news-industry-regulatory-changes__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            font-size: 1.15em;
            font-weight: bold;
            color: var(--text-color-dark);
            background-color: var(--bg-color-light);
            cursor: pointer;
            user-select: none;
            transition: background-color 0.3s ease;
        }

        .page-latest-news-industry-regulatory-changes__faq-question:hover {
            background-color: #e9ecef;
        }

        .page-latest-news-industry-regulatory-changes__faq-qtext {
            pointer-events: none;
        }

        .page-latest-news-industry-regulatory-changes__faq-toggle {
            font-size: 1.5em;
            line-height: 1;
            pointer-events: none;
            transition: transform 0.3s ease;
        }

        .page-latest-news-industry-regulatory-changes__faq-item.active .page-latest-news-industry-regulatory-changes__faq-toggle {
            transform: rotate(45deg);
        }

        .page-latest-news-industry-regulatory-changes__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            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: #ffffff;
            color: #555555;
        }

        .page-latest-news-industry-regulatory-changes__faq-item.active .page-latest-news-industry-regulatory-changes__faq-answer {
            max-height: 2000px !important; /* Đủ lớn để chứa mọi nội dung */
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-latest-news-industry-regulatory-changes__link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .page-latest-news-industry-regulatory-changes__link:hover {
            color: #1c4eac;
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .page-latest-news-industry-regulatory-changes__hero-title {
                font-size: 2.2em;
            }
            .page-latest-news-industry-regulatory-changes__section-title {
                font-size: 1.8em;
            }
            .page-latest-news-industry-regulatory-changes__sub-section-title {
                font-size: 1.4em;
            }
        }

        @media (max-width: 768px) {
            .page-latest-news-industry-regulatory-changes {
                font-size: 16px;
                line-height: 1.6;
            }
            .page-latest-news-industry-regulatory-changes__hero-section {
                padding: 30px 15px;
                padding-top: 10px !important;
            }
            .page-latest-news-industry-regulatory-changes__hero-title {
                font-size: 1.8em;
            }
            .page-latest-news-industry-regulatory-changes__hero-description {
                font-size: 1em;
            }
            .page-latest-news-industry-regulatory-changes__main-content,
            .page-latest-news-industry-regulatory-changes__cta-section,
            .page-latest-news-industry-regulatory-changes__faq-section {
                padding: 20px 15px;
            }
            .page-latest-news-industry-regulatory-changes__section-title {
                font-size: 1.6em;
            }
            .page-latest-news-industry-regulatory-changes__sub-section-title {
                font-size: 1.2em;
            }
            .page-latest-news-industry-regulatory-changes__paragraph {
                font-size: 0.95em;
            }
            .page-latest-news-industry-regulatory-changes__button-group {
                flex-direction: column;
                gap: 15px;
            }
            .page-latest-news-industry-regulatory-changes__btn-primary,
            .page-latest-news-industry-regulatory-changes__btn-secondary {
                width: 100% !important;
                max-width: 100% !important;
                padding: 12px 20px;
                font-size: 1em;
            }
            .page-latest-news-industry-regulatory-changes__list-item {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
            }
            .page-latest-news-industry-regulatory-changes__list {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
            /* Mobile specific image/video handling */
            .page-latest-news-industry-regulatory-changes img,
            .page-latest-news-industry-regulatory-changes video {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
            }
            .page-latest-news-industry-regulatory-changes__image-container,
            .page-latest-news-industry-regulatory-changes__video-container,
            .page-latest-news-industry-regulatory-changes__hero-image-wrapper {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                overflow: hidden !important;
                padding-left: 0;
                padding-right: 0;
            }
        }
    