.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main, #F2FFF6); /* Main text color on dark background */
    background-color: var(--background, #08160F); /* Page background */
}

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding as body handles header offset */
    box-sizing: border-box;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-width: 1920px; /* Ensure image doesn't stretch too wide on very large screens */
    margin-bottom: 30px; /* Space between image and content */
    border-radius: 8px;
}

.page-gdpr__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1; /* Ensure content is above image if any overlap */
}

.page-gdpr__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-main, #F2FFF6);
    max-width: 60ch; /* Limit line length for readability */
    margin-left: auto;
    margin-right: auto;
}

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

/* General Section Styling */
.page-gdpr__section {
    padding: 60px 20px;
    box-sizing: border-box;
}

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

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

.page-gdpr__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold, #F2C14E);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-gdpr__sub-title {
    font-size: clamp(1.4em, 2.5vw, 2em);
    font-weight: 600;
    color: var(--gold, #F2C14E);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-gdpr__content-block p,
.page-gdpr__principles-grid p,
.page-gdpr__rights-list p,
.page-gdpr__contact-info p {
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 15px;
}

.page-gdpr__inline-link {
    color: var(--glow, #57E38D);
    text-decoration: underline;
}

.page-gdpr__inline-link:hover {
    color: var(--gold, #F2C14E);
}

/* Principles Grid */
.page-gdpr__principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-gdpr__principle-card {
    background: var(--card-bg, #11271B);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border, #2E7A4E);
    transition: transform 0.3s ease;
}

.page-gdpr__principle-card:hover {
    transform: translateY(-5px);
}

.page-gdpr__card-title {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--text-main, #F2FFF6);
    margin-bottom: 15px;
}

.page-gdpr__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    object-fit: cover;
    max-width: 1000px; /* Default max width for content images */
}

/* Rights List */
.page-gdpr__rights-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-gdpr__rights-item {
    background: var(--card-bg, #11271B);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid var(--border, #2E7A4E);
}

.page-gdpr__rights-title {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--gold, #F2C14E);
    margin-bottom: 10px;
}

/* Contact Section */
.page-gdpr__contact-info {
    background: var(--card-bg, #11271B);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border, #2E7A4E);
    margin-top: 30px;
    text-align: center;
}

.page-gdpr__contact-email {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--glow, #57E38D);
    margin: 15px 0;
    word-break: break-all;
}

/* Buttons */
.page-gdpr__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-gdpr__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Policy Changes Section */
.page-gdpr__policy-changes p {
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 10px;
}

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

.page-gdpr__faq-item {
    background: var(--card-bg, #11271B);
    border: 1px solid var(--border, #2E7A4E);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.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(--text-main, #F2FFF6);
    background-color: var(--deep-green, #0A4B2C);
    border-bottom: 1px solid var(--border, #2E7A4E);
}

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

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

.page-gdpr__faq-answer {
    padding: 0 25px;
    color: var(--text-secondary, #A7D9B8);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

/* Styling for <details> tag (native support) */
.page-gdpr__faq-item[open] .page-gdpr__faq-answer {
    max-height: 500px; /* Adjust as needed for content length */
    padding-top: 15px;
    padding-bottom: 20px;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
    border-bottom: none;
}

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

/* CTA Section */
.page-gdpr__cta-section {
    background: var(--deep-green, #0A4B2C);
    text-align: center;
    padding: 80px 20px;
    margin-top: 60px;
}

.page-gdpr__cta-text {
    font-size: 1.2em;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 30px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-gdpr__hero-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section,
    .page-gdpr__section,
    .page-gdpr__cta-section {
        padding: 40px 15px;
        padding-top: 10px; /* Still small top padding for first section */
    }

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

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

    .page-gdpr__sub-title,
    .page-gdpr__card-title,
    .page-gdpr__rights-title {
        font-size: 1.1em;
    }

    .page-gdpr__principles-grid {
        grid-template-columns: 1fr;
    }

    /* Images */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container,
    .page-gdpr__hero-section,
    .page-gdpr__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Buttons */
    .page-gdpr__btn-primary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 15px 20px; /* Adjust padding for smaller screens */
    }
}