
        /* style/gdpr.css */
        /* body đã padding-top: var(--header-offset) từ shared.css; trang này không cần thêm */
        .page-gdpr {
            font-family: 'Arial', sans-serif;
            color: #333333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }

        .page-gdpr__hero-section {
            background-color: #2563eb;
            color: #ffffff;
            padding: 80px 20px;
            text-align: center;
            padding-top: 10px; /* Nhẹ nhàng hơn, body đã xử lý offset */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .page-gdpr__hero-image {
            width: 100%;
            max-width: 1200px;
            height: auto;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .page-gdpr__hero-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .page-gdpr__main-title {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #ffffff;
        }

        .page-gdpr__subtitle {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            margin-bottom: 30px;
            color: #e0e7ff;
        }

        .page-gdpr__cta-button {
            display: inline-block;
            background-color: #64748b;
            color: #ffffff;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
        }

        .page-gdpr__cta-button:hover {
            background-color: #4a5568;
            transform: translateY(-2px);
        }

        .page-gdpr__section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background-color: #ffffff;
            border-bottom: 1px solid #e0e0e0;
        }

        .page-gdpr__section:last-of-type {
            border-bottom: none;
        }

        .page-gdpr__section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: #2563eb;
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .page-gdpr__content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .page-gdpr__card {
            background-color: #f0f4f8;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            border: 1px solid #d1d9e6;
            display: flex;
            flex-direction: column;
        }

        .page-gdpr__card:hover {
            transform: translateY(-5px);
        }

        .page-gdpr__card-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            display: block;
            object-fit: contain;
        }

        .page-gdpr__card-title {
            font-size: 1.5rem;
            color: #2563eb;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .page-gdpr__card-text {
            font-size: 1rem;
            color: #4a5568;
        }

        .page-gdpr__list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .page-gdpr__list-item {
            background-color: #e2e8f0;
            margin-bottom: 15px;
            padding: 20px;
            border-radius: 8px;
            display: flex;
            align-items: flex-start;
            font-size: 1.1rem;
            color: #333333;
            box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
        }

        .page-gdpr__list-item::before {
            content: '✓';
            color: #2563eb;
            font-weight: 700;
            margin-right: 15px;
            font-size: 1.3rem;
            line-height: 1;
        }

        .page-gdpr__text-block {
            margin-bottom: 30px;
            font-size: 1.1rem;
            color: #4a5568;
        }

        .page-gdpr__text-block h3 {
            font-size: 1.8rem;
            color: #2563eb;
            margin-top: 40px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .page-gdpr__text-block h4 {
            font-size: 1.4rem;
            color: #64748b;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .page-gdpr__faq-section {
            background-color: #f0f4f8;
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 8px;
            margin-bottom: 40px;
        }

        .page-gdpr__faq-item {
            background-color: #ffffff;
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .page-gdpr__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            background-color: #2563eb;
            color: #ffffff;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            user-select: none;
            transition: background-color 0.3s ease;
        }

        .page-gdpr__faq-question:hover {
            background-color: #1e40af;
        }

        .page-gdpr__faq-question h3 {
            margin: 0;
            flex-grow: 1;
            pointer-events: none; /* Ngăn chặn h3 chặn sự kiện click */
            color: #ffffff;
        }

        .page-gdpr__faq-toggle {
            font-size: 1.8rem;
            line-height: 1;
            margin-left: 20px;
            pointer-events: none; /* Ngăn chặn toggle chặn sự kiện click */
            transition: transform 0.3s ease;
        }

        .page-gdpr__faq-item.active .page-gdpr__faq-toggle {
            transform: rotate(45deg);
        }

        .page-gdpr__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: #4a5568;
        }

        .page-gdpr__faq-item.active .page-gdpr__faq-answer {
            max-height: 2000px !important; /* Đảm bảo đủ cao cho mọi nội dung */
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-gdpr__contact-link {
            color: #2563eb;
            text-decoration: none;
            font-weight: 600;
        }

        .page-gdpr__contact-link:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .page-gdpr__hero-section {
                padding: 40px 15px;
            }

            .page-gdpr__main-title {
                font-size: clamp(1.8rem, 8vw, 2.5rem);
            }

            .page-gdpr__subtitle {
                font-size: clamp(0.9rem, 4vw, 1.1rem);
            }

            .page-gdpr__cta-button {
                padding: 12px 25px;
                font-size: 1rem;
            }

            .page-gdpr__section {
                padding: 40px 15px;
            }

            .page-gdpr__section-title {
                font-size: clamp(1.5rem, 6vw, 2rem);
                margin-bottom: 30px;
            }

            .page-gdpr__content-grid {
                grid-template-columns: 1fr;
            }

            .page-gdpr__card {
                padding: 25px;
            }

            .page-gdpr__card-title {
                font-size: 1.3rem;
            }

            .page-gdpr__list-item {
                font-size: 1rem;
                padding: 15px;
                margin-left: 0 !important;
                margin-right: 0 !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }
            
            .page-gdpr__list {
                padding: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-gdpr__text-block {
                font-size: 1rem;
            }

            .page-gdpr__text-block h3 {
                font-size: 1.5rem;
            }

            .page-gdpr__text-block h4 {
                font-size: 1.2rem;
            }

            .page-gdpr__faq-section {
                padding: 40px 15px;
            }

            .page-gdpr__faq-question {
                padding: 15px 20px;
                font-size: 1rem;
            }

            .page-gdpr__faq-toggle {
                font-size: 1.5rem;
            }

            .page-gdpr__faq-answer {
                padding: 15px 20px;
            }
            
            /* Mobile image responsive */
            .page-gdpr img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
                box-sizing: border-box !important;
            }

            .page-gdpr__card-icon {
                width: 60px !important;
                height: 60px !important;
                max-width: 100% !important;
            }

            .page-gdpr__hero-image {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }

            .page-gdpr__section,
            .page-gdpr__card,
            .page-gdpr__container,
            .page-gdpr__faq-section,
            .page-gdpr__hero-content {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-gdpr__cta-button {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-gdpr__cta-buttons,
            .page-gdpr__button-group,
            .page-gdpr__btn-container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
                flex-wrap: wrap !important;
                gap: 10px;
                display: flex;
                flex-direction: column; /* For vertical stacking of buttons */
            }
        }

        @media (min-width: 769px) {
            .page-gdpr__hero-image {
                width: 100%; /* Ensure it takes full width of its container */
                max-width: 1200px;
            }
        }
    