:root {
    --page-gdpr-bg: #08160F; /* Background */
    --page-gdpr-card-bg: #11271B; /* Card BG */
    --page-gdpr-text-main: #F2FFF6; /* Text Main */
    --page-gdpr-text-secondary: #A7D9B8; /* Text Secondary */
    --page-gdpr-border: #2E7A4E; /* Border */
    --page-gdpr-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    --page-gdpr-glow: #57E38D; /* Glow */
    --page-gdpr-gold: #F2C144; /* Gold */
    --page-gdpr-divider: #1E3A2A; /* Divider */
    --page-gdpr-deep-green: #0A4B2C; /* Deep Green */
    --page-gdpr-link-color: #57E38D; /* Using glow for links for visibility on dark bg */
    --page-gdpr-white: #ffffff;
    --page-gdpr-dark-text: #333333;
}

.page-gdpr {
    background-color: var(--page-gdpr-bg);
    color: var(--page-gdpr-text-main);
    font-family: 'Arial', sans-serif; /* Example font, actual font might be in shared.css */
    line-height: 1.6;
}

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    padding-bottom: 60px; /* Space below content */
    padding-top: 10px; /* Small decorative top padding, body handles header offset */
    box-sizing: border-box;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

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

.page-gdpr__hero-content {
    max-width: 900px;
    margin: 40px auto 0 auto; /* Margin top to separate from image */
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 3em); /* Responsive H1 font size */
    color: var(--page-gdpr-text-main);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

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

/* CTA Buttons */
.page-gdpr__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05em;
    transition: all 0.3s ease;
    min-width: 180px;
    box-sizing: border-box;
    max-width: 100%; /* Ensure responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    text-align: center;
}

.page-gdpr__btn-primary {
    background: var(--page-gdpr-btn-gradient);
    color: var(--page-gdpr-text-main);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__btn-secondary {
    background-color: transparent;
    color: var(--page-gdpr-link-color); /* Using glow for text */
    border: 2px solid var(--page-gdpr-link-color);
}

.page-gdpr__btn-secondary:hover {
    background-color: var(--page-gdpr-link-color);
    color: var(--page-gdpr-bg); /* Dark text on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Content Sections */
.page-gdpr__content-section {
    padding: 60px 0;
    box-sizing: border-box;
}

.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-gdpr__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: var(--page-gdpr-text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-gdpr__sub-title {
    font-size: 1.5em;
    color: var(--page-gdpr-text-main);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-gdpr__text-block {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: var(--page-gdpr-text-secondary);
}

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

.page-gdpr__list-item {
    background-color: var(--page-gdpr-card-bg);
    border-left: 5px solid var(--page-gdpr-link-color);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--page-gdpr-text-secondary);
}

.page-gdpr__list-item:last-child {
    margin-bottom: 0;
}

.page-gdpr__list-item .page-gdpr__list-title {
    color: var(--page-gdpr-text-main);
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-gdpr__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Color contrast classes */
.page-gdpr__dark-bg {
    background-color: var(--page-gdpr-bg);
    color: var(--page-gdpr-text-secondary); /* Using secondary for general text on dark bg */
}

.page-gdpr__light-bg {
    background-color: var(--page-gdpr-card-bg); /* Using card bg for light section on dark page */
    color: var(--page-gdpr-text-secondary);
}

.page-gdpr__light-bg .page-gdpr__section-title,
.page-gdpr__light-bg .page-gdpr__sub-title {
    color: var(--page-gdpr-text-main);
}

.page-gdpr__contact-info {
    font-size: 1.1em;
    color: var(--page-gdpr-text-secondary);
    text-align: center;
    margin-bottom: 30px;
}

.page-gdpr__contact-link {
    color: var(--page-gdpr-link-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
    color: var(--page-gdpr-glow);
    text-decoration: underline;
}

/* FAQ Section */
.page-gdpr__faq-section {
    padding: 60px 0;
    box-sizing: border-box;
    background-color: var(--page-gdpr-bg);
    color: var(--page-gdpr-text-secondary);
}

.page-gdpr__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-gdpr__faq-item {
    background-color: var(--page-gdpr-card-bg);
    border: 1px solid var(--page-gdpr-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--page-gdpr-text-secondary);
}

.page-gdpr__faq-item summary {
    list-style: none; /* Hide default marker */
    cursor: pointer;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--page-gdpr-text-main);
    background-color: var(--page-gdpr-card-bg);
    border-bottom: 1px solid transparent; /* default */
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-gdpr__faq-item summary:hover {
    background-color: rgba(var(--page-gdpr-link-color), 0.1);
}

.page-gdpr__faq-item[open] summary {
    border-bottom: 1px solid var(--page-gdpr-border);
    background-color: rgba(var(--page-gdpr-link-color), 0.15);
}

.page-gdpr__faq-qtext {
    flex-grow: 1;
}

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--page-gdpr-link-color);
}

.page-gdpr__faq-answer {
    padding: 20px;
    font-size: 1.05em;
    color: var(--page-gdpr-text-secondary);
}

/* Final CTA Section */
.page-gdpr__final-cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--page-gdpr-card-bg); /* Using card bg for light section on dark page */
    color: var(--page-gdpr-text-secondary);
}

.page-gdpr__final-cta-section .page-gdpr__section-title {
    color: var(--page-gdpr-text-main);
    margin-bottom: 20px;
}

.page-gdpr__final-cta-section .page-gdpr__text-block {
    max-width: 800px;
    margin: 0 auto 40px auto;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__hero-content {
        max-width: 768px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.8em, 4vw, 2.5em);
    }
    .page-gdpr__section-title {
        font-size: clamp(1.6em, 3vw, 2.2em);
    }
}

@media (max-width: 768px) {
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-gdpr__hero-section {
        padding-bottom: 40px;
        padding-top: 10px !important; /* body already handles --header-offset */
    }
    .page-gdpr__hero-content {
        margin-top: 20px;
        padding: 0 15px;
    }
    .page-gdpr__main-title {
        font-size: 2em; /* Fixed for smaller screens */
    }
    .page-gdpr__description {
        font-size: 1em;
    }
    .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        min-width: unset;
    }
    .page-gdpr__content-section,
    .page-gdpr__faq-section,
    .page-gdpr__final-cta-section {
        padding: 40px 0;
    }
    .page-gdpr__container {
        padding: 0 15px;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-gdpr__sub-title {
        font-size: 1.3em;
    }
    .page-gdpr__text-block,
    .page-gdpr__list-item p,
    .page-gdpr__faq-answer p {
        font-size: 0.95em;
    }
    .page-gdpr__list-item {
        padding: 15px;
    }
    .page-gdpr__list-item .page-gdpr__list-title {
        font-size: 1.1em;
    }
    .page-gdpr__content-image {
        margin: 30px auto;
    }
    .page-gdpr__faq-item summary {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-gdpr__faq-answer {
        padding: 15px;
    }

    /* Images and Video responsiveness */
    .page-gdpr img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container,
    .page-gdpr__hero-section,
    .page-gdpr__faq-section,
    .page-gdpr__final-cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }
    .page-gdpr__hero-image-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      overflow: hidden !important;
    }
    /* Specific rules for images inside content sections */
    .page-gdpr__content-image {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    /* Ensure no content area image is smaller than 200px */
    .page-gdpr__content-area img,
    .page-gdpr__list-item img {
        min-width: 200px;
        min-height: 200px;
    }
}

/* Ensure color contrast for elements */
.page-gdpr a {
    color: var(--page-gdpr-link-color);
}
.page-gdpr a:hover {
    color: var(--page-gdpr-glow);
}
.page-gdpr p, .page-gdpr li {
    color: var(--page-gdpr-text-secondary);
}

/* Ensure content area images are not smaller than 200px */
.page-gdpr__content-area img,
.page-gdpr__list-item img {
    min-width: 200px;
    min-height: 200px;
}