.page-gdpr {
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--page-gdpr-background-color, #F4F7FB);
    color: var(--page-gdpr-text-main-color, #1F2D3D);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    background-color: var(--page-gdpr-primary-color, #2F6BFF); /* Using primary color for hero background */
    color: #FFFFFF;
}

.page-gdpr__hero-image {
    width: 100%;
    max-width: 1200px; /* Adjust based on actual layout, but keep large */
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px; /* Added for visual appeal */
}

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

.page-gdpr__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF; /* Ensure H1 is white on blue background */
}

.page-gdpr__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 25px;
    color: var(--page-gdpr-text-main-color, #1F2D3D);
    text-align: center;
}

.page-gdpr__paragraph {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-gdpr__list-item {
    background-color: var(--page-gdpr-card-bg-color, #FFFFFF);
    border: 1px solid var(--page-gdpr-border-color, #D6E2FF);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-gdpr__list-item::before {
    content: '✅'; /* Vietnamese checkmark */
    margin-right: 10px;
    font-size: 1.2em;
}

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

.page-gdpr__card {
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--page-gdpr-border-color, #D6E2FF);
}

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

.page-gdpr__card-image {
    width: 100%;
    max-width: 400px; /* Ensure images are not too small */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-gdpr__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--page-gdpr-custom-color-1776249996415, #000000); /* Use custom color for card titles */
}

.page-gdpr__card-description {
    font-size: 0.95rem;
    color: var(--page-gdpr-text-main-color, #1F2D3D);
}

.page-gdpr__link {
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-gdpr__link:hover {
    color: var(--page-gdpr-secondary-color, #6FA3FF);
    text-decoration: underline;
}

.page-gdpr__contact-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--page-gdpr-background-color, #F4F7FB); /* Use specified background color */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding-bottom: 30px;
    }
    .page-gdpr__hero-image {
        margin-bottom: 15px;
    }
    .page-gdpr__title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    .page-gdpr__description {
        font-size: 1rem;
    }
    .page-gdpr__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .page-gdpr__card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-gdpr__card-image {
        max-width: 100%;
    }
    /* Mobile overflow protection */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
    .page-gdpr__hero-image {
        width: 100%; /* Ensure hero image takes full width on mobile */
    }
}