.page-gdpr {
    background-color: #F4F7FB; /* Using custom background color */
    color: #1F2D3D; /* Using custom text color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px;
}

/* Ensure no padding-top for the first section to avoid double spacing with body padding-top */
.page-gdpr__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding for the first section */
    padding-bottom: 40px;
    background-color: #2F6BFF; /* Main color for hero background */
    color: #FFFFFF;
    text-align: center;
    overflow: hidden; /* Ensure content doesn't spill */
}

.page-gdpr__hero-image-wrapper {
    position: relative;
    width: 100%;
    max-height: 500px; /* Limit height of image wrapper */
    overflow: hidden;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.8; /* Slightly dim the image to make text pop */
}

.page-gdpr__hero-content {
    position: relative; /* Ensure content is above the dimmed image if any */
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Use clamp for h1 font-size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF; /* White for title on dark background */
}

.page-gdpr__description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #E0E0E0; /* Lighter white for description */
}

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

.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #FFFFFF; /* Using custom card background color */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-gdpr__heading {
    font-size: 2em;
    font-weight: 600;
    color: #1F2D3D;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #D6E2FF; /* Using custom border color */
    padding-bottom: 10px;
}

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

.page-gdpr__paragraph {
    margin-bottom: 15px;
    color: #1F2D3D;
}

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

.page-gdpr__list-item {
    margin-bottom: 10px;
    color: #1F2D3D;
}

.page-gdpr__list-item strong {
    color: #000000; /* Using custom color for strong text */
}

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

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

.page-gdpr__content-image {
    width: 100%;
    max-width: 800px; /* Ensure content image doesn't overflow */
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-gdpr__cta-section {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(90deg, #6FA3FF 0%, #2F6BFF 100%); /* Gradient background */
    border-radius: 8px;
    color: #FFFFFF;
}

.page-gdpr__cta-text {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 500;
}

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

.page-gdpr__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding-bottom: 30px;
    }

    .page-gdpr__hero-content {
        padding: 15px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

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

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

    .page-gdpr__container {
        padding: 20px;
    }

    .page-gdpr__heading {
        font-size: 1.6em;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-gdpr__list {
        margin-left: 20px;
    }

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

    .page-gdpr__content-image {
        max-width: 100%; /* Ensure content image is responsive */
        min-width: 200px;
        min-height: 200px;
    }

    /* Important: Must ensure images in content area are responsive and don't overflow */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }

    .page-gdpr__cta-section {
        margin-top: 30px;
        padding: 20px;
    }

    .page-gdpr__cta-text {
        font-size: 1.1em;
    }

    .page-gdpr__cta-button {
        padding: 10px 20px;
    }
}