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

.page-gdpr__container {
    max-width: 1200px; /* Aligned with 3WIN style boxed layout */
    margin: 0 auto;
    padding: 20px;
}

.page-gdpr__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding as per rule */
    padding-bottom: 40px;
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Using main colors for hero background */
    color: #FFFFFF;
    text-align: center;
    overflow: hidden; /* Ensure no image overflow */
}

.page-gdpr__hero-image-wrapper {
    margin-bottom: 30px; /* Space between image and content */
}

.page-gdpr__hero-image {
    display: block;
    width: 100%;
    max-width: 1200px; /* Max width for the image */
    height: auto;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Using clamp for H1 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-gdpr__intro-text {
    font-size: clamp(1em, 2vw, 1.25em);
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-gdpr__content-section {
    padding: 60px 20px;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    margin-top: -40px; /* Overlap with hero section slightly for visual effect */
    position: relative;
    z-index: 1;
}

.page-gdpr__text-block {
    margin-bottom: 40px;
}

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #2F6BFF; /* Primary color for titles */
    margin-bottom: 20px;
    font-weight: 600;
}

.page-gdpr__text-block p {
    margin-bottom: 15px;
    color: #1F2D3D; /* Text Main */
}

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

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

.page-gdpr__list-item strong {
    color: #000000; /* Custom Color_1776249996415 */
}

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

.page-gdpr__image-wrapper {
    flex: 1;
    min-width: 300px; /* Ensure image wrapper has min-width */
}

.page-gdpr__content-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-gdpr__text-content {
    flex: 2;
    min-width: 300px; /* Ensure text content has min-width */
}

.page-gdpr__highlight {
    color: #2F6BFF; /* Primary color for highlights */
    font-weight: bold;
}

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

.page-gdpr__link:hover {
    text-decoration: underline;
}

.page-gdpr__button-group {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

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

.page-gdpr__button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}

.page-gdpr__button--secondary {
    background: #6FA3FF; /* Auxiliary color */
    color: #FFFFFF;
}

.page-gdpr__button--secondary:hover {
    background: #2F6BFF; /* Primary color on hover for secondary */
    transform: translateY(-2px);
}

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

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

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

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

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

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

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

    .page-gdpr__image-wrapper,
    .page-gdpr__text-content {
        min-width: unset;
        width: 100%;
    }

    .page-gdpr__content-image {
        max-width: 100%;
        height: auto; /* Ensure images are responsive */
    }

    .page-gdpr__button-group {
        flex-direction: column;
    }

    .page-gdpr__button {
        width: 100%;
        text-align: center;
    }
}

/* Crucial mobile image overflow prevention */
@media (max-width: 768px) {
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure content area images are at least 200px wide for display on larger screens */
@media (min-width: 769px) {
    .page-gdpr__content-image {
        min-width: 200px;
        min-height: 200px;
    }
}