:root {
    --page-gdpr-primary-color: #C61F1F;
    --page-gdpr-secondary-color: #E53030;
    --page-gdpr-button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    --page-gdpr-card-bg: #2A1212;
    --page-gdpr-background: #140C0C;
    --page-gdpr-text-main: #FFF1E8;
    --page-gdpr-border-color: #6A1E1E;
    --page-gdpr-gold-color: #F3C54D;
    --page-gdpr-deep-red: #7E0D0D;
}

.page-gdpr {
    background-color: var(--page-gdpr-background);
    color: var(--page-gdpr-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding to avoid overlap with fixed header, body handles main offset */
}

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background-color: var(--page-gdpr-card-bg);
    border-bottom: 2px solid var(--page-gdpr-border-color);
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 20px;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

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

.page-gdpr__main-title {
    font-size: clamp(2em, 3.5vw, 3em); /* Responsive font size for H1 */
    color: var(--page-gdpr-gold-color);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-gdpr__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--page-gdpr-text-main);
}

.page-gdpr__button {
    display: inline-block;
    background: var(--page-gdpr-button-gradient);
    color: var(--page-gdpr-text-main);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-gdpr__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-gdpr__section {
    padding: 40px 20px;
    margin: 0 auto;
    max-width: 1200px;
    border-bottom: 1px solid var(--page-gdpr-deep-red);
}

.page-gdpr__section:last-of-type {
    border-bottom: none;
}

.page-gdpr__section-title {
    font-size: 2.2em;
    color: var(--page-gdpr-gold-color);
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-gdpr__paragraph {
    margin-bottom: 15px;
    font-size: 1em;
    color: var(--page-gdpr-text-main);
}

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

.page-gdpr__list-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--page-gdpr-text-main);
}

.page-gdpr__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
}

.page-gdpr__content-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.page-gdpr__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-gdpr__text-content {
    flex: 1;
}

.page-gdpr__image-wrapper {
    flex: 1;
    min-width: 200px; /* Ensure image wrapper has a minimum width */
}

.page-gdpr__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
}

.page-gdpr__contact-info {
    font-style: normal;
    margin-top: 20px;
    margin-bottom: 20px;
    color: var(--page-gdpr-text-main);
}

.page-gdpr__inline-link {
    color: var(--page-gdpr-gold-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-gdpr__inline-link:hover {
    color: var(--page-gdpr-primary-color);
}

.page-gdpr__policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-gdpr__policy-button {
    display: inline-block;
    background-color: var(--page-gdpr-card-bg);
    color: var(--page-gdpr-text-main);
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid var(--page-gdpr-border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-gdpr__policy-button:hover {
    background-color: var(--page-gdpr-deep-red);
    border-color: var(--page-gdpr-primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding: 30px 15px;
    }

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

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

    .page-gdpr__button {
        padding: 10px 20px;
        min-width: unset;
    }

    .page-gdpr__section {
        padding: 30px 15px;
    }

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

    .page-gdpr__content-grid {
        flex-direction: column;
        gap: 20px;
    }

    .page-gdpr__content-grid--reverse {
        flex-direction: column-reverse; /* Maintain logical order for screen readers */
    }

    .page-gdpr__image {
        max-width: 100%;
        height: auto;
    }

    .page-gdpr__policy-links {
        flex-direction: column;
        align-items: center;
    }

    .page-gdpr__policy-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Ensure content images in mobile are not overflowing */
@media (max-width: 768px) {
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}