/* style/gdpr.css */

/* Variables from shared.css */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f9f9f9;
    --border-color: #e0e0e0;
    --login-button-color: #EA7C07;
    /* --header-offset is defined in shared.css */
}

/* Base styles for the GDPR page content */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark); /* Default dark text for light body background */
    background-color: var(--secondary-color); /* Explicitly white background */
}

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