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

.page-gdpr {
    background-color: var(--color-background); /* Matches body background */
    color: var(--color-text-main); /* Light text on dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-gdpr__section {
    padding: 60px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-sizing: border-box;
}

.page-gdpr__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem); /* Responsive font size for H2 */
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.page-gdpr__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem); /* Responsive font size for H3 */
    color: var(--color-secondary);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.page-gdpr__hero-image-container {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 30px; /* Space between image and content */
}