.page-gdpr {
  color: #f0f0f0; /* Light text for dark background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1A202C;
  color: #FFD700;
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-gdpr__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-gdpr__cta-button--centered {
  margin-top: 40px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__intro-section,
.page-gdpr__data-collection-section,
.page-gdpr__data-usage-section,
.page-gdpr__legal-basis-section,
.page-gdpr__rights-section,
.page-gdpr__security-section,
.page-gdpr__retention-section,
.page-gdpr__sharing-section,
.page-gdpr__international-transfer-section,
.page-gdpr__cookies-section,
.page-gdpr__children-privacy-section,
.page-gdpr__changes-section,
.page-gdpr__contact-section {
  padding: 60px 0;
  background-color: #1A202C;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-gdpr__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 30px auto;
}

.page-gdpr__list-item {
  background-color: rgba(255, 215, 0, 0.05);
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #ffffff;
}

.page-gdpr__list-item strong {
  color: #FFD700;
}

.page-gdpr__image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__image-item {
  background-color: rgba(255, 215, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
}

.page-gdpr__image-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid #FFD700;
}

.page-gdpr__image-title {
  font-size: 1.5em;
  color: #FFD700;
  margin: 20px 15px 10px;
}

.page-gdpr__image-description {
  font-size: 0.95em;
  color: #f0f0f0;
  padding: 0 15px;
}

.page-gdpr__last-updated {
  text-align: center;
  font-size: 0.9em;
  color: #aaaaaa;
  margin-top: 40px;
}

.page-gdpr__contact-info {
  text-align: center;
  margin-top: 30px;
}

.page-gdpr__contact-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-gdpr__contact-item a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-item a:hover {
  text-decoration: underline;
}

/* Ensure content area images are not small */
.page-gdpr img {
  min-width: 200px;
  min-height: 200px;
}

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

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: var(--header-offset, 80px);
  }
  .page-gdpr__hero-section {
    padding: 60px 0;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-text,
  .page-gdpr__list-item,
  .page-gdpr__image-description,
  .page-gdpr__contact-item {
    font-size: 0.95em;
  }
  .page-gdpr__image-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__image-item img {
    height: 200px;
  }
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 0.9em;
  }
  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__section-text,
  .page-gdpr__list-item,
  .page-gdpr__image-description,
  .page-gdpr__contact-item {
    font-size: 0.9em;
  }
}