:root {
    --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-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

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

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

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

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for the image */
    margin-bottom: 20px; /* 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 {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

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

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

.page-gdpr__btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: var(--page-gdpr-btn-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: filter 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__btn-primary:hover {
    filter: brightness(1.1);
}

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

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

.page-gdpr__intro-section,
.page-gdpr__rights-section,
.page-gdpr__faq-section {
    background-color: var(--page-gdpr-background); /* Lighter background for these sections */
    padding: 80px 0;
}

.page-gdpr__principles-section,
.page-gdpr__data-security-section,
.page-gdpr__contact-section {
    background-color: var(--page-gdpr-deep-green); /* Darker background for these sections */
    padding: 80px 0;
}

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

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

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

.page-gdpr__card-text {
    font-size: 1em;
    color: var(--page-gdpr-text-secondary);
}

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

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

.page-gdpr__right-item {
    background-color: var(--page-gdpr-card-bg);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--page-gdpr-border);
    color: var(--page-gdpr-text-main);
}

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

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

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

.page-gdpr__security-list li {
    background-color: var(--page-gdpr-card-bg);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    border-left: 5px solid var(--page-gdpr-border);
    font-size: 1.1em;
    color: var(--page-gdpr-text-main);
}

/* FAQ Section */
.page-gdpr__faq-list {
    margin-top: 40px;
}

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

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--page-gdpr-text-main);
    cursor: pointer;
    background-color: var(--page-gdpr-deep-green);
    border-bottom: 1px solid var(--page-gdpr-border);
}

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

.page-gdpr__faq-question::marker {
    display: none;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
    border-bottom: 1px solid transparent; /* No border when open */
}

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

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    transform: rotate(45deg); /* Rotate for 'x' effect */
}

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

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

.page-gdpr__faq-answer a {
    color: var(--page-gdpr-glow);
    text-decoration: underline;
}

.page-gdpr__contact-info {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-gdpr__contact-info p {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--page-gdpr-text-main);
}

.page-gdpr__contact-link {
    color: var(--page-gdpr-glow);
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__contact-link:hover {
    text-decoration: underline;
}

.page-gdpr__btn-large {
    padding: 15px 30px;
    font-size: 1.2em;
    margin-top: 20px;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__hero-section {
        padding: 40px 15px;
    }
    .page-gdpr__container {
        padding: 0 15px;
    }
    .page-gdpr__principles-grid,
    .page-gdpr__rights-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding: 30px 15px;
        padding-top: 10px !important; /* body handles --header-offset, small top padding for section */
    }
    .page-gdpr__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }
    .page-gdpr__description {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: clamp(1.6em, 6vw, 2.2em);
    }
    .page-gdpr__text-block,
    .page-gdpr__card-text,
    .page-gdpr__right-description,
    .page-gdpr__security-list li,
    .page-gdpr__contact-info p,
    .page-gdpr__faq-answer {
        font-size: 1em;
    }
    .page-gdpr__btn-primary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-gdpr__hero-image,
    .page-gdpr__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-gdpr__container,
    .page-gdpr__principles-grid,
    .page-gdpr__rights-list,
    .page-gdpr__security-list,
    .page-gdpr__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-gdpr__principles-grid,
    .page-gdpr__rights-list {
        grid-template-columns: 1fr;
    }
    .page-gdpr__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-gdpr__faq-answer {
        padding: 15px 20px;
    }
    .page-gdpr__btn-large {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}