.page-gdpr {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-gdpr__hero-section {
    background-color: #000000; /* Dark background for hero section */
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden; /* To contain the image if it overflows slightly */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px; /* Minimum height for hero section */
}

.page-gdpr__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.page-gdpr__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5; /* Slightly dim the background image */
    z-index: 0;
    filter: none; /* Explicitly disable any filters */
}

.page-gdpr__hero-title {
    font-size: 3em;
    color: #FFFFFF; /* White text on dark background */
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    color: #FFFFFF; /* White text on dark background */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-gdpr__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    min-width: 150px; /* Ensure buttons are not too small */
    text-align: center;
    font-size: 1.1em;
}

.page-gdpr__button--register {
    background-color: #000000; /* Main color */
    color: #FFFFFF; /* Register text color */
    border: 2px solid #FFFFFF; /* White border for contrast */
}

.page-gdpr__button--register:hover {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #000000;
}

.page-gdpr__button--login {
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Dark text for contrast */
    border: 2px solid #FCBC45;
}

.page-gdpr__button--login:hover {
    background-color: #e0a53b; /* Slightly darker gold on hover */
    color: #000000;
    border-color: #e0a53b;
}

.page-gdpr__button--download {
    background-color: #000000; /* Main color */
    color: #FFFFFF;
    border: 2px solid #FCBC45; /* Gold border for download */
}

.page-gdpr__button--download:hover {
    background-color: #FCBC45;
    color: #000000;
    border-color: #000000;
}


.page-gdpr__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #FFFFFF; /* White background for content area */
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #000000; /* Dark text */
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
}

.page-gdpr__subsection-title {
    font-size: 1.8em;
    color: #000000; /* Dark text */
    margin-top: 35px;
    margin-bottom: 15px;
}

.page-gdpr__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333; /* Darker grey for body text */
}

.page-gdpr__list {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 20px;
    color: #333333;
}

.page-gdpr__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-gdpr__link {
    color: #000000; /* Link color */
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-gdpr__link:hover {
    color: #FCBC45; /* Gold on hover */
}

.page-gdpr__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    min-width: 200px; /* Enforce min-width */
    min-height: 200px; /* Enforce min-height */
    filter: none; /* Explicitly disable any filters */
}

.page-gdpr__image--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px; /* Max width for content images */
}

.page-gdpr__cta-section {
    background-color: #000000; /* Dark background for CTA */
    color: #FFFFFF;
    padding: 50px 20px;
    text-align: center;
    border-radius: 10px;
    margin-top: 60px;
}

.page-gdpr__cta-title {
    font-size: 2.2em;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-gdpr__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-gdpr__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .page-gdpr {
        padding-top: var(--header-offset, 80px); /* Adjust padding for mobile header */
    }

    .page-gdpr__hero-section {
        padding: 40px 15px;
        min-height: 350px;
    }

    .page-gdpr__hero-title {
        font-size: 2.2em;
    }

    .page-gdpr__hero-description {
        font-size: 1em;
    }

    .page-gdpr__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-gdpr__button {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        font-size: 1em;
    }

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

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

    .page-gdpr__subsection-title {
        font-size: 1.5em;
        margin-top: 25px;
        margin-bottom: 10px;
    }

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

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

    .page-gdpr__image {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
        min-width: 200px; /* Enforce min-width */
        min-height: 200px; /* Enforce min-height */
    }
    
    .page-gdpr__cta-section {
        padding: 30px 15px;
    }

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

    .page-gdpr__cta-description {
        font-size: 1em;
    }
}

/* Ensure content area images adhere to min-size rule */
.page-gdpr__content-area img {
    min-width: 200px;
    min-height: 200px;
    /* max-width: 100% and height: auto are handled by .page-gdpr__image for mobile */
}

/* No CSS filters for images */
.page-gdpr__image {
    filter: none; /* Explicitly disable any filters */
}