.page-gdpr {
    background-color: #FFFFFF; /* Nền: #FFFFFF */
    color: #333333; /* Default text color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px 0; /* Minimal padding, body handles header offset */
}

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

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-top: 10px; /* Small top padding for the first section */
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1920/600; /* Placeholder for 1920x600 */
}

.page-gdpr__hero-content {
    padding: 20px 15px;
    max-width: 800px;
    margin-top: 20px;
}

.page-gdpr__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.5rem); /* Adjusted for GDPR page, not fixed large */
    color: #017439; /* Primary color */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

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

.page-gdpr__content-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.page-gdpr__section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #017439; /* Primary color */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.page-gdpr__text {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333333;
    text-align: justify;
}

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

.page-gdpr__feature-card {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 250px; /* Ensure cards have some height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

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

.page-gdpr__feature-image {
    width: 100%; /* Ensure content images are large */
    max-width: 400px; /* Example max-width for smaller images within grid */
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 6px;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
    object-fit: cover;
}

.page-gdpr__card-title {
    font-size: 1.3rem;
    color: #017439; /* Primary color */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-gdpr__card-text {
    font-size: 0.95rem;
    color: #555555;
    flex-grow: 1;
}

.page-gdpr__user-rights-section {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
    margin-top: 30px;
}

.page-gdpr__user-rights-section .page-gdpr__content-image {
    flex: 1 1 400px; /* Allow image to grow, but min 400px width */
    max-width: 50%; /* Max 50% width on larger screens */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
    object-fit: cover;
}

.page-gdpr__list {
    flex: 1 1 400px; /* Allow list to grow, but min 400px width */
    list-style: disc;
    margin-left: 20px;
    padding-left: 0;
    color: #333333;
}

.page-gdpr__list-item {
    margin-bottom: 10px;
    font-size: 1rem;
}

.page-gdpr__data-processing-section {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
    margin-top: 30px;
}

.page-gdpr__data-processing-section .page-gdpr__text,
.page-gdpr__data-processing-section .page-gdpr__list {
    flex: 1 1 45%; /* Take up nearly half width */
}

.page-gdpr__content-image--right {
    order: 1; /* Move image to the right on larger screens */
    flex: 1 1 400px;
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
    object-fit: cover;
}

.page-gdpr__contact-info {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
    color: #333333;
}

.page-gdpr__contact-info p {
    margin-bottom: 10px;
}

.page-gdpr__link {
    color: #017439; /* Primary color for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-gdpr__link:hover {
    color: #005f2e; /* Darker green on hover */
    text-decoration: underline;
}

.page-gdpr__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 150px;
}

.page-gdpr__button--contact {
    background-color: #017439; /* Primary color */
    color: #FFFFFF; /* White text */
    border: 2px solid #017439;
}

.page-gdpr__button--contact:hover {
    background-color: #005f2e;
    border-color: #005f2e;
}

.page-gdpr__button--register {
    background-color: #C30808; /* Register button color */
    color: #FFFF00; /* Register font color */
    border: 2px solid #C30808;
}

.page-gdpr__button--register:hover {
    background-color: #a30606;
    border-color: #a30606;
}

.page-gdpr__contact-image {
    display: block;
    margin: 40px auto 20px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-gdpr__hero-image {
        aspect-ratio: 16/9; /* More standard aspect ratio for mobile hero */
    }
    .page-gdpr__user-rights-section,
    .page-gdpr__data-processing-section {
        flex-direction: column;
        align-items: center;
    }

    .page-gdpr__user-rights-section .page-gdpr__content-image,
    .page-gdpr__data-processing-section .page-gdpr__content-image--right {
        max-width: 100%;
        order: 0; /* Reset order for data processing image */
    }

    .page-gdpr__data-processing-section .page-gdpr__text,
    .page-gdpr__data-processing-section .page-gdpr__list {
        flex: 1 1 100%; /* Full width on smaller screens */
    }

    .page-gdpr__feature-grid {
        grid-template-columns: 1fr; /* Single column on smaller screens */
    }
}

@media (max-width: 768px) {
    .page-gdpr__main-title {
        font-size: clamp(1.5rem, 6vw, 2rem); /* Adjust H1 for smaller screens */
    }
    .page-gdpr__section-title {
        font-size: clamp(1.3rem, 5vw, 1.8rem);
    }
    .page-gdpr__hero-content {
        padding: 15px;
    }
    .page-gdpr__description {
        font-size: 1rem;
    }
    .page-gdpr__text,
    .page-gdpr__list-item {
        font-size: 0.95rem;
    }
    .page-gdpr__button {
        width: 100%;
        max-width: 250px; /* Constrain button width on mobile */
    }
    /* Ensure all images within .page-gdpr are responsive and don't overflow */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
    /* Specific for images within content sections */
    .page-gdpr__content-image,
    .page-gdpr__feature-image,
    .page-gdpr__contact-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Maintain minimum size */
        min-height: 200px; /* Maintain minimum size */
    }
}

@media (max-width: 549px) {
    .page-gdpr__main-title {
        font-size: clamp(1.2rem, 7vw, 1.8rem); /* Further adjust H1 for very small screens */
    }
    .page-gdpr__section-title {
        font-size: clamp(1.1rem, 6vw, 1.5rem);
    }
    .page-gdpr__list {
        margin-left: 15px;
    }
    .page-gdpr__hero-image {
        aspect-ratio: 4/3; /* Even more portrait-like aspect ratio for mobile hero */
    }
}