.page-gdpr {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, assuming body handles --header-offset */
}

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

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column; /* Ensure image is above text */
    align-items: center;
    text-align: center;
    padding: 40px 20px 60px;
    background-color: #F4F7FB; /* Use background color, not gradient for hero section itself */
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 30px;
}

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

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

.page-gdpr__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

.page-gdpr__description {
    font-size: 1.15rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 40px;
}

.page-gdpr__content-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Card BG for content section */
    border-top: 1px solid #D6E2FF; /* Border */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2F6BFF; /* Primary */
    margin-bottom: 30px;
    text-align: center;
}

.page-gdpr__subsection-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1F2D3D; /* Text Main */
    margin-top: 40px;
    margin-bottom: 20px;
}

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

.page-gdpr__image {
    width: 100%;
    max-width: 800px; /* Example max-width, ensuring it's >= 200px */
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

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

.page-gdpr__list-item {
    background-color: #F4F7FB; /* Background */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 5px;
    padding: 15px 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
}

.page-gdpr__list-icon {
    font-size: 1.2rem;
    color: #000000; /* Custom Color_1776249996415 */
    margin-right: 15px;
    line-height: 1;
}

.page-gdpr__list-strong {
    color: #2F6BFF; /* Primary for emphasis */
}

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

.page-gdpr__link:hover {
    text-decoration: underline;
    color: #6FA3FF; /* Secondary */
}

.page-gdpr__cta-section {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(180deg, #F4F7FB 0%, #FFFFFF 100%); /* Blend from background to card bg */
    border-radius: 8px;
    margin-top: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-gdpr__cta-text {
    font-size: 1.2rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    margin: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    border: none;
    cursor: pointer;
}

.page-gdpr__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #A5C4FF; /* Glow */
}

.page-gdpr__cta-button--secondary {
    background: #FFFFFF;
    color: #2F6BFF; /* Primary */
    border: 1px solid #2F6BFF; /* Primary */
}

.page-gdpr__cta-button--secondary:hover {
    background: #F4F7FB; /* Background */
    color: #2F6BFF; /* Primary */
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.2);
}

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

    .page-gdpr__main-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .page-gdpr__description {
        font-size: 1rem;
    }

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

    .page-gdpr__subsection-title {
        font-size: 1.5rem;
    }

    .page-gdpr__image {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
        min-width: unset; /* Allow smaller display if constrained by parent */
        min-height: unset;
    }

    .page-gdpr__cta-button {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
}

/* Enforce mobile image overflow rule for content images */
@media (max-width: 768px) {
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}