:root {
    --gdpr-primary-color: #11A84E; /* Main color */
    --gdpr-secondary-color: #22C768; /* Accent color */
    --gdpr-button-gradient-start: #2AD16F;
    --gdpr-button-gradient-end: #13994A;
    --gdpr-card-bg: #11271B;
    --gdpr-bg-color: #08160F;
    --gdpr-text-main: #F2FFF6;
    --gdpr-text-secondary: #A7D9B8;
    --gdpr-border-color: #2E7A4E;
    --gdpr-glow-color: #57E38D;
    --gdpr-gold-color: #F2C14E;
    --gdpr-divider-color: #1E3A2A;
    --gdpr-deep-green: #0A4B2C;
    --gdpr-dark-text-color: #333333; /* For light backgrounds */
    --gdpr-light-text-color: #ffffff; /* For dark backgrounds */
}

/* Base styles for the GDPR page */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--gdpr-text-main); /* Default text color for dark background */
    background-color: var(--gdpr-bg-color); /* Main background color */
}

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    text-align: center;
    overflow: hidden;
    background-color: var(--gdpr-deep-green); /* Fallback/base for hero */
}

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

.page-gdpr__hero-content {
    padding: 40px 20px;
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    margin-top: -80px; /* Pull content up slightly over image for visual flow */
    background-color: var(--gdpr-card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.page-gdpr__main-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem); /* Responsive font size */
    color: var(--gdpr-gold-color);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.page-gdpr__hero-description {
    font-size: 1.1rem;
    color: var(--gdpr-text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    max-width: 100%; /* Responsive button */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    cursor: pointer;
}

.page-gdpr__btn-primary {
    background: linear-gradient(180deg, var(--gdpr-button-gradient-start) 0%, var(--gdpr-button-gradient-end) 100%);
    color: var(--gdpr-light-text-color);
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
    background-color: transparent;
    color: var(--gdpr-primary-color);
    border: 2px solid var(--gdpr-primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-gdpr__btn-secondary:hover {
    background-color: var(--gdpr-primary-color);
    color: var(--gdpr-light-text-color);
    transform: translateY(-2px);
}

/* Video Section */
.page-gdpr__video-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding as body handles header offset */
    background-color: var(--gdpr-card-bg); /* Use card background for this section */
    color: var(--gdpr-text-main);
    text-align: center;
}

.page-gdpr__video-container {
    width: 100%; /* Desktop width */
    max-width: 960px; /* Max width for video */
    margin: 30px auto;
    box-sizing: border-box;
    overflow: hidden; /* Ensure video doesn't overflow */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__video-link-wrapper {
    display: block;
    width: 100%;
    height: auto;
    cursor: pointer;
}

.page-gdpr__video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.page-gdpr__video-description {
    max-width: 800px;
    margin: 20px auto 0;
    font-size: 1rem;
    color: var(--gdpr-text-secondary);
}

/* Content Sections */
.page-gdpr__content-section {
    padding: 60px 20px;
    background-color: var(--gdpr-bg-color); /* Default background */
    color: var(--gdpr-text-main);
}

.page-gdpr__dark-bg {
    background-color: var(--gdpr-deep-green); /* Darker green background for contrast */
    color: var(--gdpr-light-text-color);
}

.page-gdpr__dark-bg .page-gdpr__sub-title {
    color: var(--gdpr-gold-color);
}

.page-gdpr__dark-bg .page-gdpr__list-item strong {
    color: var(--gdpr-gold-color);
}

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

.page-gdpr__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    color: var(--gdpr-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr__dark-bg .page-gdpr__section-title {
    color: var(--gdpr-gold-color); /* Gold for titles on dark green */
}

.page-gdpr__sub-title {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--gdpr-secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__text-block {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.page-gdpr__image-full {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--gdpr-text-main);
}

.page-gdpr__list-item {
    margin-bottom: 10px;
    font-size: 1rem;
}

.page-gdpr__list-item strong {
    color: var(--gdpr-primary-color);
}

/* FAQ Section */
.page-gdpr__faq-section {
    padding: 60px 20px;
    background-color: var(--gdpr-card-bg); /* Use card background for FAQ */
    color: var(--gdpr-text-main);
}

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

.page-gdpr__faq-item {
    background-color: var(--gdpr-bg-color); /* Slightly darker bg for FAQ item */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--gdpr-divider-color);
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--gdpr-text-main);
    background-color: var(--gdpr-deep-green); /* Darker green for summary */
    border-bottom: 1px solid var(--gdpr-divider-color);
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
    background-color: rgba(var(--gdpr-deep-green), 0.8);
}

/* Remove default details arrow */
.page-gdpr__faq-item summary {
    list-style: none;
}
.page-gdpr__faq-item summary::-webkit-details-marker {
    display: none;
}

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

.page-gdpr__faq-answer {
    padding: 20px 25px;
    font-size: 0.95rem;
    color: var(--gdpr-text-secondary);
    background-color: var(--gdpr-bg-color); /* Matches main background */
    border-top: none;
}

/* Contact Section */
.page-gdpr__contact-section {
    padding: 60px 20px;
    background-color: var(--gdpr-bg-color);
    color: var(--gdpr-text-main);
    text-align: center;
}

.page-gdpr__image-contact {
    width: 100%;
    max-width: 400px; /* Smaller image for contact section */
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-gdpr__hero-content {
        padding: 30px 15px;
        margin-top: -50px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

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

    .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-gdpr__video-section,
    .page-gdpr__content-section,
    .page-gdpr__faq-section,
    .page-gdpr__contact-section {
        padding: 40px 15px;
    }

    .page-gdpr__video-section {
        padding-top: 10px !important; /* body already has header offset */
    }

    .page-gdpr__video-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
        margin: 20px auto;
    }

    .page-gdpr__video-link-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-gdpr__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-gdpr__container {
        padding-left: 0;
        padding-right: 0;
    }

    .page-gdpr__image-full,
    .page-gdpr__image-contact {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        padding: 0;
        margin: 20px auto;
    }

    /* All images in content areas must be responsive */
    .page-gdpr img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* All containers of images/buttons/videos must be responsive */
    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container,
    .page-gdpr__cta-buttons,
    .page-gdpr__video-section,
    .page-gdpr__video-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Specific padding for content containers on mobile */
    .page-gdpr__content-section .page-gdpr__container,
    .page-gdpr__faq-section .page-gdpr__container,
    .page-gdpr__contact-section .page-gdpr__container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Contrast Fixes - if needed */
.page-gdpr__contrast-fix {
  background: var(--gdpr-light-text-color) !important;
  color: var(--gdpr-dark-text-color) !important;
  border: 1px solid #e0e0e0 !important;
}

.page-gdpr__text-contrast-fix {
  color: var(--gdpr-dark-text-color) !important;
  text-shadow: none !important;
}

/* Ensure body text is readable on the main background */
.page-gdpr p,
.page-gdpr li,
.page-gdpr__faq-answer p {
    color: var(--gdpr-text-secondary); /* Use secondary text color for body text */
}

.page-gdpr__dark-bg p,
.page-gdpr__dark-bg li,
.page-gdpr__dark-bg .page-gdpr__faq-answer p {
    color: var(--gdpr-text-secondary); /* Keep secondary for consistency on dark bg */
}