.page-gdpr {
  color: #ffffff; /* Light text on dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
  padding-top: 120px; /* Space for fixed header on desktop */
}

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

.page-gdpr__hero-section {
  background-color: var(--primary-color, #1A202C);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  color: var(--accent-color, #FFD700);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-gdpr__hero-subtitle {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-gdpr__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-button--primary {
  background-color: var(--accent-color, #FFD700);
  color: var(--primary-color, #1A202C);
  border: 2px solid var(--accent-color, #FFD700);
}

.page-gdpr__cta-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button--secondary {
  background-color: transparent;
  color: var(--accent-color, #FFD700);
  border: 2px solid var(--accent-color, #FFD700);
}

.page-gdpr__cta-button--secondary:hover {
  background-color: var(--accent-color, #FFD700);
  color: var(--primary-color, #1A202C);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__content-section {
  padding: 60px 20px;
  background-color: #1a1a1a; /* Slightly lighter dark for content */
  color: #f0f0f0;
}

.page-gdpr__dark-section {
  background-color: var(--primary-color, #1A202C); /* Brand primary color for darker sections */
  color: #ffffff;
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--accent-color, #FFD700);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-gdpr__subsection-title {
  font-size: 1.8em;
  color: #f0f0f0;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.page-gdpr__text-block p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #cccccc;
}

.page-gdpr__dark-section .page-gdpr__text-block p {
  color: #e0e0e0;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #cccccc;
}

.page-gdpr__list li {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #cccccc;
}

.page-gdpr__dark-section .page-gdpr__list li {
  color: #e0e0e0;
}

.page-gdpr__list li strong {
  color: var(--accent-color, #FFD700);
}

.page-gdpr a {
  color: var(--accent-color, #FFD700);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: #e6c200;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1.1em;
  }
  .page-gdpr__section-title {
    font-size: 2.2em;
  }
  .page-gdpr__subsection-title {
    font-size: 1.6em;
  }
  .page-gdpr__text-block p, .page-gdpr__list li {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-subtitle {
    font-size: 1em;
  }
  .page-gdpr__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__cta-button {
    width: 100% !important;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__content-section {
    padding: 40px 15px;
  }
  .page-gdpr__container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr__subsection-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-gdpr__text-block p, .page-gdpr__list li {
    font-size: 0.95em;
    line-height: 1.6;
  }
  .page-gdpr__list {
    margin-left: 15px;
  }
  /* Ensure images are fully responsive */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-gdpr__image {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__subsection-title {
    font-size: 1.2em;
  }
}