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

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

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding as body handles --header-offset */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-gdpr__hero-content {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 20px;
    z-index: 1; /* Ensure content is above any background effects */
}

.page-gdpr__main-title {
    color: var(--gold-color);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
}

.page-gdpr__lead-paragraph {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.page-gdpr__content-section {
    padding: 60px 0;
}

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

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

.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--gold-color);
    font-weight: bold;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
}

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

.page-gdpr__text-block {
    flex: 2;
    min-width: 300px;
}

.page-gdpr__text-block p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.page-gdpr__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-gdpr__list li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.page-gdpr__list li strong {
    color: var(--text-main);
}

.page-gdpr__image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__link {
    color: var(--glow-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-gdpr__link:hover {
    color: var(--gold-color);
}

.page-gdpr__contact-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-gdpr__contact-list li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

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

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

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

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
    border-bottom: 1px solid var(--divider-color);
}

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

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

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

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

/* Details element specific styles */
.page-gdpr__faq-item summary {
    list-style: none;
}
.page-gdpr__faq-item summary::-webkit-details-marker {
    display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr__container {
        flex-direction: column;
        gap: 30px;
    }
    .page-gdpr__text-block, .page-gdpr__image-wrapper {
        flex: none;
        width: 100%;
    }
    .page-gdpr__hero-content {
        margin-top: 20px;
    }
    .page-gdpr__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
}

@media (max-width: 768px) {
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-gdpr__hero-section {
        padding-bottom: 40px;
    }
    .page-gdpr__hero-image-wrapper {
        max-height: 400px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-gdpr__lead-paragraph {
        font-size: 1rem;
    }
    .page-gdpr__content-section {
        padding: 40px 0;
    }
    .page-gdpr__container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-gdpr__section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }
    .page-gdpr__sub-title {
        font-size: 1.4rem;
    }
    .page-gdpr p, .page-gdpr li {
        font-size: 0.95rem;
    }
    .page-gdpr__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-gdpr__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-gdpr__faq-question {
        font-size: 1rem;
        padding: 15px;
    }
    .page-gdpr__faq-answer {
        padding: 15px;
    }
    .page-gdpr__faq-toggle {
        font-size: 1.3rem;
    }
}

/* Ensure no CSS filters are applied to images */
.page-gdpr img {
    filter: none; /* Explicitly ensure no filters */
}

/* Ensure content area images are at least 200px */
.page-gdpr__image {
    min-width: 200px;
    min-height: 200px;
}