.page-gdpr {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Small padding-top for the first section, relying on body padding for header offset */
.page-gdpr__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    background-color: #0a0909; /* Dark background as per 3WIN style */
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for hero image */
    margin-bottom: 30px; /* Space between image and content */
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.page-gdpr__main-title {
    color: #FFFFFF; /* White for title on dark background */
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    /* No fixed font-size, relying on default browser size or clamp if necessary */
    /* font-size: clamp(2rem, 4vw, 3.5rem); */
}

.page-gdpr__intro-text {
    color: #D6E2FF; /* Lighter text on dark background */
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__content-section {
    padding: 60px 0;
}

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

.page-gdpr__section-title {
    color: #1F2D3D; /* Text Main */
    font-size: 2em;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
}

.page-gdpr__paragraph {
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
    font-size: 1em;
    text-align: justify;
}

.page-gdpr__paragraph a {
    color: #2F6BFF; /* Primary color for links */
    text-decoration: underline;
}

.page-gdpr__paragraph a:hover {
    color: #6FA3FF; /* Auxiliary color on hover */
}

.page-gdpr__list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

.page-gdpr__list-item {
    margin-bottom: 10px;
}

.page-gdpr__image-text-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
    margin: 40px 0;
}

.page-gdpr__content-image {
    width: 100%; /* Default for smaller screens */
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__text-content {
    flex: 1;
    min-width: 300px; /* Ensure text content is not too narrow */
}

.page-gdpr__content-image--center {
    display: block;
    margin: 30px auto;
    max-width: 800px; /* Example max-width for a non-flex image */
}

.page-gdpr__cta-button--bottom {
    margin-top: 40px;
    margin-bottom: 20px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-gdpr__image-text-block {
        flex-wrap: nowrap;
    }

    .page-gdpr__content-image {
        width: 45%; /* Adjust width for larger screens */
        flex-shrink: 0;
    }

    /* For images that are part of a flex container, ensure they don't shrink below 200px */
    .page-gdpr__image-text-block .page-gdpr__content-image {
        max-width: calc(50% - 15px); /* Adjusted for gap */
    }
}

@media (max-width: 768px) {
    .page-gdpr__main-title {
        font-size: 2em; /* Smaller font size for mobile */
    }

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

    .page-gdpr__hero-section {
        padding-bottom: 30px;
    }

    .page-gdpr__content-section {
        padding: 40px 0;
    }

    .page-gdpr__hero-image-wrapper {
        margin-bottom: 20px;
    }

    /* Crucial: Mobile image overflow prevention */
    .page-gdpr__content-image,
    .page-gdpr__hero-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Still enforce min size for content images */
        min-height: 200px;
    }

    .page-gdpr__container {
        padding: 0 15px;
    }

    /* Ensure any image within .page-gdpr does not cause horizontal scroll */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure content area images (selected by .page-gdpr img) are not styled smaller than 200px */
/* This rule is to check for conflicting styles that might make images smaller */
/* For example, if a generic img rule was width: 80px, it would be overridden here */
.page-gdpr img {
    /* These are minimum display sizes, not a fixed size */
    min-width: 200px; 
    min-height: 200px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

/* Ensure no CSS filter is applied to images */
.page-gdpr img {
    filter: none;
}