.page-gdpr {
    max-width: 1390px; /* Aligned with max-width requirement for content area */
    margin: 0 auto;
    padding: 10px 15px 40px; /* Small top padding, some side padding for mobile */
    box-sizing: border-box;
    overflow-x: hidden; /* Prevent horizontal scroll */
    background-color: var(--bg-color, #0A0A0A); /* Fallback to default if not set */
    color: var(--text-main-color, #FFF6D6);
}

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column; /* Image above text by default */
    gap: 20px;
    margin-bottom: 40px;
    padding-top: 10px; /* Small top padding as per rules, body handles --header-offset */
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto; /* Ensure image scales proportionally */
    display: block;
    aspect-ratio: 16/5; /* 1920:600 aspect ratio */
    object-fit: cover;
    object-position: center;
}

.page-gdpr__hero-content {
    text-align: center;
    padding: 0 15px;
}

.page-gdpr__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-main-color, #FFF6D6);
    margin-bottom: 15px;
    max-width: 800px; /* Constrain H1 width for better readability */
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Use clamp for H1 font size */
}

.page-gdpr__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main-color, #FFF6D6);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__content-section {
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color, #3A2A12);
}

.page-gdpr__content-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.page-gdpr__section-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 600;
    color: var(--main-color, #F2C14E); /* Using main color for section titles */
    margin-bottom: 25px;
    text-align: center;
}

.page-gdpr__text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-main-color, #FFF6D6);
}

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

.page-gdpr__list-item {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-main-color, #FFF6D6);
}

.page-gdpr__list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--main-color, #F2C14E); /* Use main color for list bullet */
    font-weight: bold;
}

.page-gdpr__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
}

.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Custom button color */
    color: #111111; /* Dark text for bright button */
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.3); /* Glow color */
}

.page-gdpr__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.5);
}

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

.page-gdpr__list--inline .page-gdpr__list-item {
    padding-left: 0;
    margin-bottom: 0;
}

.page-gdpr__list--inline .page-gdpr__list-item::before {
    content: none;
}

.page-gdpr__link {
    color: var(--main-color, #F2C14E);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.page-gdpr__link:hover {
    color: var(--glow-color, #FFD36B);
    text-decoration: underline;
}

/* Color variables based on provided scheme */
:root {
    --main-color: #F2C14E;
    --accent-color: #FFD36B;
    --card-bg-color: #111111;
    --bg-color: #0A0A0A;
    --text-main-color: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    /* Header offset is handled by shared.css on body */
}

/* Media Queries for Responsiveness */
@media (max-width: 849px) {
    .page-gdpr {
        padding: 10px 12px 30px; /* Adjust padding for smaller screens */
    }

    .page-gdpr__main-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

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

    .page-gdpr__section-title {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }

    .page-gdpr__list-item,
    .page-gdpr__text {
        font-size: 0.95rem;
    }

    .page-gdpr__hero-section {
        gap: 15px;
        margin-bottom: 30px;
    }
}

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

    .page-gdpr__list--inline {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

@media (max-width: 549px) {
    .page-gdpr__main-title {
        font-size: clamp(1.3rem, 6vw, 2.2rem);
        text-align: left; /* Allow left alignment for very small screens if preferred */
    }

    .page-gdpr__description {
        text-align: left;
    }

    .page-gdpr__section-title {
        text-align: left;
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }

    .page-gdpr__text {
        text-align: left;
    }

    .page-gdpr__button {
        width: 100%; /* Full width button on small screens */
        box-sizing: border-box;
        padding: 12px 15px;
    }

    .page-gdpr__list-item {
        padding-left: 20px; /* Adjust list item padding */
    }

    .page-gdpr__list-item::before {
        left: 0;
    }
}

/* Ensure no CSS filter on images */
.page-gdpr img {
    filter: none !important; /* Explicitly prevent any filter */
}

/* Content area image CSS size lower bound check (any img within .page-gdpr) */
.page-gdpr img:not(.page-gdpr__hero-image) { /* Exclude hero image for this specific rule if needed, though general rule applies */
    min-width: 200px;
    min-height: 200px;
    /* The HTML width/height attributes provide the intended display size,
       and CSS max-width: 100%; height: auto; will scale them down.
       This min-width/height ensures they don't *become* too small if not constrained by HTML attributes. */
}