.page-gdpr {
    background-color: var(--background-color, #F4F7FB);
    color: var(--text-main-color, #1F2D3D);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Ensure image is above text */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 40px; /* Small top padding, more bottom padding */
    background-color: var(--main-color, #2F6BFF); /* Use main brand color for hero background */
    overflow: hidden; /* Ensure no image overflow */
}

.page-gdpr__hero-image {
    width: 100%;
    max-width: 1920px; /* Max width for large screens */
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 30px; /* Space between image and text */
}

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

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

.page-gdpr__hero-description {
    color: #FFFFFF; /* Adjusted for better contrast on #2F6BFF, CR 4.96:1 (AA compliant) */
    font-size: clamp(1em, 1.5vw, 1.2em);
    margin-bottom: 30px;
}

.page-gdpr__content-section {
    padding: 60px 20px;
    background-color: var(--background-color, #F4F7FB);
}

.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--card-bg-color, #FFFFFF);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section-title {
    font-size: clamp(1.8em, 2.5vw, 2.5em);
    font-weight: 700;
    color: var(--custom-color-1776249996415, #000000); /* Black for main section titles */
    margin-bottom: 30px;
    text-align: center;
}

.page-gdpr__sub-title {
    font-size: clamp(1.4em, 2vw, 2em);
    font-weight: 600;
    color: var(--text-main-color, #1F2D3D);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-gdpr__text-block {
    font-size: 1em;
    color: var(--text-main-color, #1F2D3D);
    margin-bottom: 15px;
}

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

.page-gdpr__list-item {
    margin-bottom: 10px;
    color: var(--text-main-color, #1F2D3D);
}

.page-gdpr__list-item strong {
    color: var(--custom-color-1776249996415, #000000);
}

.page-gdpr__link {
    color: var(--main-color, #2F6BFF);
    text-decoration: none;
    font-weight: 500;
}

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

.page-gdpr__cta-section {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color, #D6E2FF);
}

.page-gdpr__cta-text {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-main-color, #1F2D3D);
    margin-bottom: 20px;
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.3);
}

.page-gdpr__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(47, 107, 255, 0.4);
}

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

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

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

    .page-gdpr__hero-description {
        font-size: 1em;
    }

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

    .page-gdpr__container {
        padding: 25px;
    }

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

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

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

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

    /* Enforce image sizing for mobile to prevent overflow */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure content images are not too small */
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-title {
        font-size: 1.6em;
    }
    .page-gdpr__sub-title {
        font-size: 1.3em;
    }
    .page-gdpr__container {
        padding: 20px;
    }
}

/* Ensure content area images (if any) are at least 200px wide for all selectors that might target them */
.page-gdpr__container img {
    min-width: 200px;
    min-height: 200px;
    width: auto; /* Allow auto width for flexible display */
    height: auto;
    object-fit: cover;
}