:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-color: #EA7C07;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f9f9f9;
  --background-white: #ffffff;
  --border-color: #e0e0e0;
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light background */
  background-color: var(--background-white); /* Assuming body background is white */
}

.page-gdpr h1, .page-gdpr h2, .page-gdpr h3, .page-gdpr h4, .page-gdpr h5, .page-gdpr h6 {
  color: var(--primary-color);
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  line-height: 1.2;
}

.page-gdpr h1 {
  font-size: 2.5em;
  text-align: center;
  color: var(--text-light);
}

.page-gdpr h2 {
  font-size: 2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1em;
}

.page-gdpr h3 {
  font-size: 1.5em;
  color: var(--text-dark);
}

.page-gdpr p {
  margin-bottom: 1em;
}

.page-gdpr ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 1em;
}

.page-gdpr ul li {
  margin-bottom: 0.5em;
}

.page-gdpr strong {
  font-weight: bold;
}

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