:root {
    --primary-color: #26A9E0;
    --auxiliary-color: #FFFFFF;
    --login-color: #EA7C07;
    --background-color: #FFFFFF;
    --black-color: #000000;
}

.page-gdpr {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    background-color: var(--background-color, #FFFFFF);
    color: #333333;
}

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

.page-gdpr__hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    text-align: center;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
    filter: none; /* Ensure no CSS filter is applied */
}

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

.page-gdpr__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--black-color, #000000); /* Changed to black for better contrast */
    margin-bottom: 15px;
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.page-gdpr__intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 30px;
}

.page-gdpr__content-section {
    padding: 30px 0;
    margin-bottom: 20px;
}

.page-gdpr__content-section--alt-bg {
    background-color: #f8f8f8;
}

.page-gdpr__section-heading {
    font-size: 2rem;
    font-weight: 600;
    color: var(--black-color, #000000); /* Changed to black for better contrast */
    margin-bottom: 20px;
    text-align: center;
}

.page-gdpr__paragraph {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

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

.page-gdpr__list-item {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.page-gdpr__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Min size for desktop content images */
    min-height: 200px; /* Min size for desktop content images */
    filter: none; /* Ensure no CSS filter is applied */
}

.page-gdpr__contact-section {
    padding: 40px 0;
    text-align: center;
}

.page-gdpr__contact-link {
    color: var(--black-color, #000000); /* Changed to black for better contrast */
    text-decoration: none;
    font-weight: 500;
}

.page-gdpr__contact-link:hover {
    color: var(--primary-color, #26A9E0); /* Revert on hover for interaction */
    text-decoration: underline;
}

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

.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.page-gdpr__button--primary {
    background-color: var(--login-color, #EA7C07);
    color: var(--black-color, #000000); /* Changed to black for better contrast */
    border-color: var(--login-color, #EA7C07);
}

.page-gdpr__button--primary:hover {
    background-color: #d36a00;
    border-color: #d36a00;
}

.page-gdpr__button--secondary {
    background-color: var(--primary-color, #26A9E0);
    color: var(--black-color, #000000); /* Changed to black for better contrast */
    border-color: var(--primary-color, #26A9E0);
}

.page-gdpr__button--secondary:hover {
    background-color: #1f8ec4;
    border-color: #1f8ec4;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-gdpr__main-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    .page-gdpr__section-heading {
        font-size: 1.7rem;
    }
    .page-gdpr__paragraph,
    .page-gdpr__list-item,
    .page-gdpr__intro-text {
        font-size: 0.95rem;
    }
    .page-gdpr__hero-image {
        aspect-ratio: 16 / 9;
    }
    .page-gdpr__button-group {
        flex-direction: column;
        align-items: center;
    }
    .page-gdpr__button {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-image,
    .page-gdpr__content-image {
        max-width: 100%;
        height: auto;
        min-width: 0; /* Allow shrinking on mobile */
        min-height: 0;
    }
    .page-gdpr__paragraph {
        text-align: left;
    }
}

@media (max-width: 549px) {
    .page-gdpr__main-title {
        font-size: clamp(1.2rem, 7vw, 2rem);
    }
    .page-gdpr__section-heading {
        font-size: 1.5rem;
    }
    .page-gdpr__button {
        width: 90%;
    }
}