/* style/gdpr.css */

/* Variables and Base Styles */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f9f9f9;
  --border-color: #e0e0e0;
  --button-hover-bg: #1e8fc2; /* Slightly darker primary for hover */
  --button-secondary-hover-bg: #f0f0f0;
  --button-secondary-hover-border: #1e8fc2;
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light body background */
  background-color: var(--background-light); /* Ensure content area has a light background for dark text */
}