:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-background: #08160F; /* Background */
    --color-card-bg: #11271B; /* Card BG */
    --color-text-main: #F2FFF6; /* Text Main */
    --color-text-secondary: #A7D9B8; /* Text Secondary */
    --color-border: #2E7A4E; /* Border */
    --color-glow: #57E38D; /* Glow */
    --color-gold: #F2C14E; /* Gold */
    --color-divider: #1E3A2A; /* Divider */
    --color-deep-green: #0A4B2C; /* Deep Green */
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-gdpr {
    font-family: Arial, sans-serif;
    color: var(--color-text-main); /* Main text color for the page, based on dark body background */
    background-color: var(--color-background); /* Explicitly setting for content area for clarity */
    line-height: 1.6;
}

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, text below */
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--color-background);
}

.page-gdpr__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 30px; /* Space between image and text content */
    object-fit: cover;
}

.page-gdpr__hero-content {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 3em); /* Using clamp for responsive H1, not fixed large value */
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-main);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__intro-text {
    font-size: 1.1em;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    justify-content: center;
    gap: 20px;
    width: 100%; /* Ensure container takes full width for responsive padding */
    max-width: 600px; /* Max width for button group */
    margin: 0 auto;
    box-sizing: border-box;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow text to break words */
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons are responsive */
}

.page-gdpr__btn-primary {
    background: var(--button-gradient);
    color: var(--color-text-main); /* White text on green gradient */
    border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
    background: transparent;
    color: var(--color-primary); /* Green text */
    border: 2px solid var(--color-primary);
}

.page-gdpr__btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-text-main); /* White text on hover */
}

.page-gdpr__section {
    padding: 60px 20px;
    background-color: var(--color-background);
}

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

.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%; /* Ensure container takes full width for responsive padding */
}

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

.page-gdpr__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.page-gdpr__section-description {
    font-size: 1.1em;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__content-block {
    font-size: 1em;
    color: var(--color-text-main);
    line-height: 1.8;
}

.page-gdpr__content-block h3 {
    font-size: 1.5em;
    color: var(--color-text-main);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-gdpr__content-block p {
    margin-bottom: 1em;
    color: var(--color-text-main);
}

.page-gdpr__content-block a {
    color: var(--color-primary);
    text-decoration: none;
}

.page-gdpr__content-block a:hover {
    text-decoration: underline;
}

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

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

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

.page-gdpr__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.page-gdpr__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-gdpr__card {
    background-color: var(--color-card-bg); /* Card BG */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
}

.page-gdpr__card-title {
    font-size: 1.4em;
    font-weight: 600;
    color: var(--color-gold); /* Using gold for card titles for emphasis */
    margin-bottom: 15px;
}

.page-gdpr__card p {
    font-size: 0.95em;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.page-gdpr__faq-list {
    margin-top: 40px;
}

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

.page-gdpr__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1em;
    color: var(--color-text-main);
    list-style: none; /* Hide default marker */
}

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

.page-gdpr__faq-qtext {
    flex-grow: 1;
    color: var(--color-text-main);
}

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

.page-gdpr__faq-answer {
    padding: 0 25px 20px;
    font-size: 0.95em;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.page-gdpr__faq-answer p {
    margin-bottom: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-gdpr__hero-section {
        padding: 40px 15px;
    }
    .page-gdpr__section {
        padding: 40px 15px;
    }
    .page-gdpr__hero-content,
    .page-gdpr__container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 768px) {
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-gdpr__hero-section {
        padding-top: 10px !important; /* body handles --header-offset, this is decorative */
    }
    .page-gdpr__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }
    .page-gdpr__section-title {
        font-size: clamp(1.5em, 6vw, 2em);
        margin-bottom: 30px;
    }
    .page-gdpr__intro-text,
    .page-gdpr__section-description,
    .page-gdpr__content-block p,
    .page-gdpr__list li,
    .page-gdpr__card p,
    .page-gdpr__faq-answer p {
        font-size: 1em;
    }

    /* Images responsiveness */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    /* Videos responsiveness - No video in this page, but keeping the rule for safety */
    .page-gdpr video,
    .page-gdpr__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-gdpr__video-section,
    .page-gdpr__video-container,
    .page-gdpr__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Buttons responsiveness */
    .page-gdpr__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-gdpr__card-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__card {
        padding: 25px;
    }
    .page-gdpr__faq-item summary {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-gdpr__faq-answer {
        padding: 0 20px 15px;
    }

    /* General containers for mobile padding */
    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container,
    .page-gdpr__content-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        /* No need for padding here if it's already on .page-gdpr__container or section */
    }
}