.page-gdpr {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--bg-background); /* #F4F7FB */
    color: var(--text-main); /* #1F2D3D */
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column; /* Enforce image on top, text below */
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%); /* #2F6BFF to #6FA3FF */
    color: #FFFFFF;
    position: relative;
    overflow: hidden; /* Ensure content doesn't bleed */
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Max width for image container */
    margin-bottom: 20px; /* Space between image and text */
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover; /* Ensure image covers the area without distortion */
}

.page-gdpr__hero-content {
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    z-index: 1; /* Ensure text is above any background elements if present */
}

.page-gdpr__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 2.8rem; /* A reasonable default for desktop, not "fixed large" */
}

.page-gdpr__hero-description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
}

.page-gdpr__content-section {
    padding: 50px 20px;
    background-color: var(--bg-background); /* #F4F7FB */
}

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

.page-gdpr__section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-main); /* #1F2D3D */
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--border-color); /* #D6E2FF */
    padding-bottom: 10px;
}

.page-gdpr__section-title:first-of-type {
    margin-top: 0;
}

.page-gdpr__paragraph {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-main); /* #1F2D3D */
}

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

.page-gdpr__list-item {
    background-color: #F8F9FA;
    border-left: 4px solid var(--primary-color); /* #2F6BFF */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: var(--text-main); /* #1F2D3D */
    font-size: 1.05rem;
}

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

.page-gdpr__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-gdpr__button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
    justify-content: center;
}

.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.page-gdpr__button--primary {
    background: var(--btn-button); /* linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%) */
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-gdpr__button--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-gdpr__button--secondary {
    background-color: #E0E7FF;
    color: var(--primary-color); /* #2F6BFF */
    border: 1px solid var(--primary-color);
}

.page-gdpr__button--secondary:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-gdpr__button--promotion {
    background: var(--btn-button); /* linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%) */
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
    border: 2px solid var(--glow-color); /* #A5C4FF */
}

.page-gdpr__button--promotion:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr {
        padding-top: 0; /* Remove padding-top from main, body handles it */
    }
    .page-gdpr__hero-section {
        padding: 30px 15px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem); /* Use clamp for H1 font size on smaller screens */
        margin-bottom: 10px;
    }

    .page-gdpr__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

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

    .page-gdpr__container {
        padding: 25px;
        border-radius: 8px;
    }

    .page-gdpr__section-title {
        font-size: 1.6rem;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-gdpr__list-item {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .page-gdpr__image {
        max-width: 100%;
        height: auto;
        margin: 20px 0;
        min-width: 200px; /* Ensure min-width is still respected */
        min-height: 200px;
    }

    .page-gdpr__button-group {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 30px;
    }

    .page-gdpr__button {
        width: 100%;
        max-width: 300px;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* Ensure content area images are responsive and not too small */
@media (max-width: 768px) {
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}