:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #DC143C; /* Deep Red */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-dark: #121212;
  --background-light: #f5f5f5;
  --card-background: rgba(255, 255, 255, 0.1);
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-light); /* Body background is dark, so main text is light */
  background-color: var(--background-dark); /* Ensure consistency with body background */
  padding-top: 120px; /* Desktop: Space for fixed header */
}

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

.page-gdpr__section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-section {
  padding: 80px 0 60px 0;
  background: linear-gradient(135deg, var(--background-dark) 0%, #0a0a0a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__main-title {
  font-size: 3.2em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  color: var(--text-color-light);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  min-width: 180px;
}

.page-gdpr__btn-primary {
  background: var(--primary-color);
  color: var(--text-color-dark);
}

.page-gdpr__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-gdpr__btn-secondary {
  background: var(--secondary-color);
  color: var(--text-color-light);
}

.page-gdpr__btn-secondary:hover {
  background: #b31030;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section-title--light {
  color: var(--text-color-light);
  text-shadow: none;
}

.page-gdpr__content-block {
  font-size: 1.05em;
  color: var(--text-color-light);
  line-height: 1.7;
}

.page-gdpr__content-block p {
  margin-bottom: 20px;
}

.page-gdpr__dark-bg {
  background-color: #1a1a1a;
  color: var(--text-color-light);
}

.page-gdpr__text-block--light {
  color: var(--text-color-light);
}

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-color-light);
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  color: var(--text-color-light);
}

.page-gdpr__list-item strong {
  color: var(--primary-color);
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  width: 40%;
  min-width: 300px;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  width: 40%;
  min-width: 300px;
}

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-gdpr__contact-item {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-color-light);
}

.page-gdpr__contact-item strong {
  color: var(--primary-color);
  margin-right: 10px;
}

.page-gdpr__contact-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-gdpr__final-cta-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(45deg, #0a0a0a 0%, var(--background-dark) 100%);
}

/* Ensure all images are responsive */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
  box-sizing: border-box;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.8em;
  }

  .page-gdpr__section-title {
    font-size: 2em;
  }

  .page-gdpr__image--left,
  .page-gdpr__image--right {
    width: 100%;
    float: none;
    margin: 20px auto;
  }

  .page-gdpr__content-block p {
    clear: both;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: 100px !important; /* Mobile: Space for fixed header */
    font-size: 15px;
  }

  .page-gdpr__container {
    padding: 30px 15px;
  }

  .page-gdpr__hero-section {
    padding: 60px 0 40px 0;
  }

  .page-gdpr__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  .page-gdpr__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__section {
    padding: 40px 0;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-gdpr__list {
    margin-left: 10px;
  }

  .page-gdpr__image {
    margin: 15px auto;
  }

  .page-gdpr__image--left,
  .page-gdpr__image--right {
    min-width: unset;
  }

  .page-gdpr__contact-item {
    font-size: 1em;
  }

  .page-gdpr__final-cta-section {
    padding: 60px 0;
  }

  /* Ensure all images are responsive */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__section,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.8em;
  }

  .page-gdpr__section-title {
    font-size: 1.5em;
  }

  .page-gdpr__hero-description {
    font-size: 0.95em;
  }

  .page-gdpr__content-block {
    font-size: 0.95em;
  }
}