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

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

.page-gdpr__hero-section {
    background-color: var(--main-color, #2F6BFF);
    color: #FFFFFF;
    padding-bottom: 40px; /* Space between image and content if image is full width */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding */
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image to content width */
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

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

.page-gdpr__hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.page-gdpr__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 20px;
    max-width: 100%; /* Ensure it doesn't overflow */
    /* No fixed font-size, relying on default browser behavior and responsive CSS */
}

.page-gdpr__hero-description {
    font-size: 1.1em;
    opacity: 0.9;
    margin-bottom: 30px;
}

.page-gdpr__content-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color, #D6E2FF);
}

.page-gdpr__content-section:last-of-type {
    border-bottom: none;
}

.page-gdpr__section-title {
    font-size: 2.2em;
    color: var(--custom-color-1776249996415, #000000);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-main, #1F2D3D);
}

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.page-gdpr__list-item {
    background-color: var(--card-bg, #FFFFFF);
    border: 1px solid var(--border-color, #D6E2FF);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-gdpr__list-item-title {
    font-size: 1.4em;
    color: var(--main-color, #2F6BFF);
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-gdpr__list-item-text {
    color: var(--text-main, #1F2D3D);
    font-size: 1em;
}

.page-gdpr__action-text {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: var(--text-main, #1F2D3D);
}

.page-gdpr__button {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
    padding: 12px 28px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-gdpr__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
    background: linear-gradient(180deg, #6FA3FF 0%, #4A8BFF 100%); /* Slightly lighter on hover */
}

.page-gdpr__image-text-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

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

.page-gdpr__block-image {
    flex: 0 0 45%; /* Maintain aspect ratio and size */
    max-width: 45%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    /* Ensure min size for content images */
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__block-content {
    flex: 1;
}

.page-gdpr__block-title {
    font-size: 1.6em;
    color: var(--main-color, #2F6BFF);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__block-text {
    color: var(--text-main, #1F2D3D);
    font-size: 1em;
}

.page-gdpr__final-note {
    text-align: center;
    margin-top: 50px;
    font-size: 1.1em;
    color: var(--text-main, #1F2D3D);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-gdpr__hero-image-wrapper {
        margin-bottom: 20px;
    }

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

    .page-gdpr__list-item-title {
        font-size: 1.2em;
    }

    .page-gdpr__image-text-block {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .page-gdpr__image-text-block--reversed {
        flex-direction: column;
    }

    .page-gdpr__block-image {
        max-width: 80%;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-gdpr__container {
        padding: 15px;
    }

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

    .page-gdpr__main-title {
        /* Relying on default h1 size and scaling, no fixed font-size */
    }

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

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

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

    .page-gdpr__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

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

    .page-gdpr__list-item-title {
        font-size: 1.1em;
    }

    .page-gdpr__block-title {
        font-size: 1.4em;
    }

    .page-gdpr__block-text {
        font-size: 0.95em;
    }

    /* Critical: Mobile image overflow fix */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }

    /* Ensure content area images are not too small */
    .page-gdpr__block-image {
        min-width: 200px;
        min-height: 200px;
        width: 100%; /* Ensure it takes full available width */
        max-width: 100%; /* Ensure it doesn't overflow */
    }
}

/* Ensure color contrast */
.page-gdpr__hero-section {
    background-color: var(--main-color, #2F6BFF);
    color: #FFFFFF; /* High contrast with blue background */
}

.page-gdpr__main-title, .page-gdpr__hero-description {
    color: #FFFFFF; /* Ensures contrast on hero background */
}

.page-gdpr__section-title {
    color: var(--custom-color-1776249996415, #000000); /* Black on light background */
}

.page-gdpr__list-item-title, .page-gdpr__block-title {
    color: var(--main-color, #2F6BFF); /* Blue on white card background */
}

.page-gdpr__list-item-text, .page-gdpr__block-text, .page-gdpr__action-text, .page-gdpr__section-description, .page-gdpr__final-note {
    color: var(--text-main, #1F2D3D); /* Dark grey on light background */
}

/* Button contrast is handled by its gradient and white text */
.page-gdpr__button {
    color: #FFFFFF;
}

/* Define CSS variables for colors */
:root {
    --main-color: #2F6BFF;
    --accent-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg: #FFFFFF;
    --background: #F4F7FB;
    --text-main: #1F2D3D;
    --custom-color-1776249996415: #000000;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
}