.page-gdpr {
    background-color: #F4F7FB;
    color: #1F2D3D;
}

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding for the first section */
    padding-bottom: 40px;
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
    color: #FFFFFF;
    text-align: center;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-gdpr__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-gdpr__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #FFFFFF;
    /* font-size: clamp(2em, 4vw, 3.5em); */ /* Use clamp for responsive font size if needed */
}

.page-gdpr__description {
    font-size: 1.1em;
    line-height: 1.6;
    opacity: 0.9;
}

.page-gdpr__content-area,
.page-gdpr__commitment-section,
.page-gdpr__rights-section,
.page-gdpr__contact-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-gdpr__container {
    max-width: 1100px;
    margin: 0 auto;
}

.page-gdpr__section-title {
    font-size: 2em;
    font-weight: 700;
    color: #1F2D3D;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.3;
}

.page-gdpr__paragraph {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #1F2D3D;
}

.page-gdpr__image-text-group {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 30px;
}

.page-gdpr__image-text-group--reverse {
    flex-direction: row-reverse;
}

.page-gdpr__image-left,
.page-gdpr__image-right {
    flex: 0 0 45%;
    max-width: 45%;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-gdpr__text-right,
.page-gdpr__text-left {
    flex: 1;
}

.page-gdpr__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-gdpr__list-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-gdpr__list-item::before {
    content: '✅'; /* Vietnamese checkmark */
    position: absolute;
    left: 0;
    color: #2F6BFF;
    font-size: 1.1em;
}

.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

.page-gdpr__button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding-bottom: 30px;
    }

    .page-gdpr__main-title {
        font-size: 2em;
    }

    .page-gdpr__description {
        font-size: 1em;
    }

    .page-gdpr__section-title {
        font-size: 1.7em;
    }

    .page-gdpr__image-text-group {
        flex-direction: column;
        align-items: center;
    }

    .page-gdpr__image-text-group--reverse {
        flex-direction: column;
    }

    .page-gdpr__image-left,
    .page-gdpr__image-right {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
        max-width: 100%; /* Ensure images don't overflow */
        height: auto; /* Maintain aspect ratio */
        min-width: 200px; /* Enforce minimum size */
        min-height: 200px; /* Enforce minimum size */
    }

    .page-gdpr__text-right,
    .page-gdpr__text-left {
        width: 100%;
    }

    .page-gdpr__content-area,
    .page-gdpr__commitment-section,
    .page-gdpr__rights-section,
    .page-gdpr__contact-section {
        padding: 30px 15px;
    }

    .page-gdpr__list-item {
        padding-left: 20px;
    }

    .page-gdpr__list-item::before {
        font-size: 1em;
    }
}

/* Ensure content area images do not get smaller than 200px */
.page-gdpr img:not(.page-gdpr__hero-image) {
    min-width: 200px;
    min-height: 200px;
}

@media (max-width: 768px) {
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}