.page-gdpr {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Add some padding at the bottom */
}

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

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column; /* Enforce image above text */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding for first section */
    padding-bottom: 40px;
    background-color: #FFFFFF; /* Card BG, for the hero section background */
    border-bottom: 1px solid #D6E2FF; /* Border */
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Match hero image width */
    margin-bottom: 20px;
}

.page-gdpr__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 200px; /* Minimum size */
}

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

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Use clamp for H1 */
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-gdpr__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #1F2D3D; /* Text Main */
}

.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: background 0.3s ease;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3); /* Glow like effect */
}

.page-gdpr__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-gdpr__cta-button--secondary {
    background: #6FA3FF; /* Auxiliary color */
    box-shadow: 0 4px 10px rgba(111, 163, 255, 0.3);
}

.page-gdpr__cta-button--secondary:hover {
    background: #4A8BFF;
    box-shadow: 0 6px 15px rgba(111, 163, 255, 0.4);
}

.page-gdpr__content-section {
    padding: 40px 0;
    background-color: #FFFFFF; /* Card BG */
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-gdpr__what-is-gdpr {
    margin-top: 20px;
}

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

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

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

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

.page-gdpr__image-left,
.page-gdpr__image-right {
    flex: 0 0 40%;
    max-width: 40%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

.page-gdpr__image-left img,
.page-gdpr__image-right img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 200px; /* Ensure min size for actual img element */
}

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

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

.page-gdpr__list-item {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #1F2D3D; /* Text Main */
}

.page-gdpr__list-item::before {
    content: '✅'; /* Checkmark for list items */
    position: absolute;
    left: 0;
    color: #2F6BFF; /* Primary color */
}

.page-gdpr__inline-link {
    color: #2F6BFF; /* Primary color for inline links */
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__inline-link:hover {
    text-decoration: underline;
}

.page-gdpr__bottom-image {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-gdpr__image-text-block {
        flex-direction: column;
        align-items: center;
    }

    .page-gdpr__image-left,
    .page-gdpr__image-right {
        max-width: 100%;
        flex: 0 0 100%;
    }

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

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

    .page-gdpr__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em); /* Adjust H1 for smaller screens */
    }

    .page-gdpr__intro-text {
        font-size: 1em;
    }

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

    /* Mobile content area image constraint */
    .page-gdpr img {
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px; /* Ensure min size */
        min-height: 200px; /* Ensure min size */
    }

    .page-gdpr__hero-image {
        min-height: 200px; /* Ensure hero image is not too small */
    }
}

@media (max-width: 480px) {
    .page-gdpr__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

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