:root {
    --page-gdpr-main-color: #11A84E;
    --page-gdpr-accent-color: #22C768;
    --page-gdpr-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-gdpr-card-bg: #11271B;
    --page-gdpr-background: #08160F;
    --page-gdpr-text-main: #F2FFF6;
    --page-gdpr-text-secondary: #A7D9B8;
    --page-gdpr-border: #2E7A4E;
    --page-gdpr-glow: #57E38D;
    --page-gdpr-gold: #F2C14E;
    --page-gdpr-divider: #1E3A2A;
    --page-gdpr-deep-green: #0A4B2C;
}

.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-gdpr-text-main);
    background-color: var(--page-gdpr-background);
}

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    text-align: center;
    overflow: hidden;
    background-color: var(--page-gdpr-background);
}

.page-gdpr__hero-image-container {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px; /* Space between image and content */
}

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

.page-gdpr__hero-content {
    z-index: 1; /* Ensure content is above any potential background layers */
    max-width: 900px;
}

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

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

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

.page-gdpr__content-section:nth-of-type(even) {
    background-color: var(--page-gdpr-background); /* Alternating background */
}

.page-gdpr__dark-bg-section {
    background-color: var(--page-gdpr-background);
    color: var(--page-gdpr-text-main);
}

.page-gdpr__content-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.page-gdpr__image-in-content {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Lists */
.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-gdpr__list-item {
    background-color: var(--page-gdpr-card-bg);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--page-gdpr-border);
}

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

.page-gdpr__list-description {
    font-size: 0.95em;
    color: var(--page-gdpr-text-secondary);
}

/* Contact Info */
.page-gdpr__contact-info {
    text-align: center;
    margin-top: 30px;
    font-style: normal;
    color: var(--page-gdpr-text-secondary);
}

.page-gdpr__contact-info p {
    margin-bottom: 10px;
}

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

.page-gdpr__contact-link:hover {
    color: var(--page-gdpr-gold);
}

/* Buttons */
.page-gdpr__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    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: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-sizing: border-box; /* Ensure padding doesn't increase total width */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow text to break words */
}

.page-gdpr__btn-primary {
    background: var(--page-gdpr-button-gradient);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
    background-color: transparent;
    color: var(--page-gdpr-glow);
    border: 2px solid var(--page-gdpr-glow);
}

.page-gdpr__btn-secondary:hover {
    background-color: var(--page-gdpr-glow);
    color: var(--page-gdpr-background); /* Dark text on light background */
    transform: translateY(-2px);
}

/* CTA Box */
.page-gdpr__cta-section {
    text-align: center;
    padding: 80px 20px;
}

.page-gdpr__cta-box {
    background-color: var(--page-gdpr-card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--page-gdpr-border);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-gdpr__faq-section {
    padding: 60px 20px;
    background-color: var(--page-gdpr-background);
}

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

.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;
    transition: all 0.3s ease;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    color: var(--page-gdpr-text-main);
    background-color: var(--page-gdpr-card-bg);
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-item[open] > .page-gdpr__faq-question {
    background-color: var(--page-gdpr-deep-green);
}

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

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

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: var(--page-gdpr-text-main);
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    transform: rotate(45deg); /* Plus sign rotates to form an 'x' or just changes to minus */
    content: '−'; /* Change to minus sign */
}

.page-gdpr__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-gdpr__faq-item summary::marker {
    display: none;
}

.page-gdpr__faq-answer {
    padding: 0 25px 20px;
    font-size: 0.95em;
    color: var(--page-gdpr-text-secondary);
    background-color: var(--page-gdpr-card-bg);
    border-top: 1px solid var(--page-gdpr-divider);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-gdpr__list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* Ensure small top padding */
    }

    .page-gdpr__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }

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

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

    .page-gdpr__content-section {
        padding: 40px 15px;
    }

    .page-gdpr__section-title {
        font-size: clamp(1.5em, 7vw, 2em);
    }

    .page-gdpr__list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* All images */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important; /* Explicitly set width for mobile */
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    /* All containing elements for images, videos, buttons */
    .page-gdpr__hero-image-container,
    .page-gdpr__content-container,
    .page-gdpr__cta-buttons,
    .page-gdpr__cta-box,
    .page-gdpr__faq-list,
    .page-gdpr__faq-item
    /* No video elements in this page, so no video-specific classes here */
    {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    /* Buttons */
    .page-gdpr__cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 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-left: 20px !important;
        padding-right: 20px !important;
    }

    .page-gdpr__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-gdpr__faq-answer {
        padding: 0 20px 15px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-section,
    .page-gdpr__content-section,
    .page-gdpr__faq-section,
    .page-gdpr__cta-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}