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

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

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    box-sizing: border-box;
    overflow: hidden; /* Ensure no overflow */
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 30px; /* Space between image and content */
}

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

.page-gdpr__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 15px;
    box-sizing: border-box;
}

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

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

.page-gdpr__btn-primary {
    display: inline-block;
    background: var(--page-gdpr-btn-gradient);
    color: var(--page-gdpr-text-main);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    max-width: 100%; /* Button responsive */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section {
    padding: 80px 20px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

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

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

.page-gdpr__text-block {
    font-size: 1.1rem;
    color: var(--page-gdpr-text-secondary);
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-gdpr__card {
    background-color: var(--page-gdpr-card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--page-gdpr-border);
    color: var(--page-gdpr-text-main); /* Card text main color */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.page-gdpr__card-title {
    font-size: 1.5rem;
    color: var(--page-gdpr-text-main);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.page-gdpr__image-text-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.page-gdpr__image-wrapper {
    flex: 1;
    min-width: 300px; /* Ensure image has a minimum width */
    max-width: 50%; /* Max width for image in flex layout */
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 12px;
}

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

.page-gdpr__list {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--page-gdpr-text-secondary);
}

.page-gdpr__list-item {
    font-size: 1.1rem;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.page-gdpr__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--page-gdpr-glow); /* Using glow color for checkmark */
}

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

.page-gdpr__dark-section {
    background-color: var(--page-gdpr-deep-green); /* Darker green background */
    color: var(--page-gdpr-text-main);
}

.page-gdpr__dark-section .page-gdpr__section-title,
.page-gdpr__dark-section .page-gdpr__text-block,
.page-gdpr__dark-section .page-gdpr__list-item strong {
    color: var(--page-gdpr-text-main);
}

.page-gdpr__btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--page-gdpr-glow); /* Using glow color for secondary button text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--page-gdpr-glow);
    cursor: pointer;
    max-width: 100%; /* Button responsive */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__btn-secondary:hover {
    background: rgba(87, 227, 141, 0.1); /* Slight background on hover */
    box-shadow: 0 4px 15px rgba(87, 227, 141, 0.2);
}

.page-gdpr__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-gdpr__contact-section .page-gdpr__contact-image {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.page-gdpr__contact-card {
    background-color: var(--page-gdpr-card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--page-gdpr-border);
    color: var(--page-gdpr-text-main);
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.page-gdpr__contact-title {
    font-size: 1.4rem;
    color: var(--page-gdpr-text-main);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.page-gdpr__contact-link {
    color: var(--page-gdpr-glow); /* Using glow color for links */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
    color: var(--page-gdpr-gold); /* Gold on hover */
    text-decoration: underline;
}

/* FAQ Section */
.page-gdpr__faq-list {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 40px;
}

.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-item[open] {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--page-gdpr-text-main);
    background-color: var(--page-gdpr-card-bg);
    transition: background-color 0.3s ease;
    list-style: none; /* For details summary */
}

.page-gdpr__faq-question::-webkit-details-marker { /* Hide default marker for Chrome/Safari */
    display: none;
}

.page-gdpr__faq-question:hover {
    background-color: var(--page-gdpr-deep-green); /* Slightly darker on hover */
}

.page-gdpr__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-gdpr__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--page-gdpr-glow);
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    transform: rotate(45deg); /* Change + to X or - */
}

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

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


/* Responsive styles */
@media (max-width: 992px) {
    .page-gdpr__hero-section {
        padding: 10px 15px 40px;
    }
    .page-gdpr__hero-content {
        padding: 0 10px;
    }
    .page-gdpr__image-text-layout {
        flex-direction: column;
    }
    .page-gdpr__image-wrapper {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .page-gdpr__section {
        padding: 60px 15px;
    }
    .page-gdpr__grid-layout {
        grid-template-columns: 1fr;
    }
    .page-gdpr__contact-info {
        flex-direction: column;
    }
    .page-gdpr__contact-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-gdpr__hero-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }
    .page-gdpr__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-gdpr__description {
        font-size: 1rem;
    }
    .page-gdpr__section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    .page-gdpr__text-block {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    .page-gdpr__card-title {
        font-size: 1.3rem;
    }
    .page-gdpr__list-item {
        font-size: 1rem;
    }
    .page-gdpr__faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
    .page-gdpr__faq-answer {
        padding: 0 20px 15px;
    }

    /* Mobile image responsive adaptation */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    /* Mobile container adaptation for images/content */
    .page-gdpr__hero-image-wrapper,
    .page-gdpr__image-wrapper,
    .page-gdpr__container,
    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__contact-card,
    .page-gdpr__faq-list,
    .page-gdpr__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important; /* Add padding to prevent content touching edges */
        padding-right: 15px !important;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }
    /* Mobile button responsive adaptation */
    .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: 15px !important; /* Ensure text has padding inside button */
        padding-right: 15px !important;
    }
    /* If multiple buttons in a group, stack them */
    .page-gdpr__cta-buttons,
    .page-gdpr__button-group,
    .page-gdpr__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 15px; /* Space between stacked buttons */
        overflow: hidden !important;
    }
}