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

.page-gdpr__hero-section {
  position: relative;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #0a0a0a; /* Dark background for hero */
  min-height: 400px; /* Ensure hero section has a minimum height */
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-gdpr__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background image */
}

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

.page-gdpr__hero-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #DC143C; /* Scarlet action color */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
}

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

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #1a1a1a; /* Slightly lighter dark background for sections */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold main color */
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-gdpr__section-text {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 20px;
  text-align: center;
}

.page-gdpr__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-gdpr__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__principles-list, .page-gdpr__rights-list, .page-gdpr__implementation-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__principle-item, .page-gdpr__right-item, .page-gdpr__implementation-item {
  background-color: rgba(30, 144, 255, 0.1); /* Semi-transparent accent blue */
  border: 1px solid #1E90FF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__principle-item:hover, .page-gdpr__right-item:hover, .page-gdpr__implementation-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(30, 144, 255, 0.3);
}

.page-gdpr__principle-title, .page-gdpr__right-title, .page-gdpr__implementation-title {
  font-size: 1.4em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 15px;
}

.page-gdpr__principle-description, .page-gdpr__right-description, .page-gdpr__implementation-description {
  color: #c0c0c0;
  font-size: 0.95em;
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #1E90FF; /* Accent blue */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 20px 10px;
}

.page-gdpr__contact-button:hover {
  background-color: #1565b3;
  transform: translateY(-2px);
}

.page-gdpr__cta-button--secondary {
  background-color: #FFD700; /* Gold main color */
  color: #0a0a0a;
}

.page-gdpr__cta-button--secondary:hover {
  background-color: #e6c200;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }

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

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

  .page-gdpr__principles-list, .page-gdpr__rights-list, .page-gdpr__implementation-list {
    grid-template-columns: 1fr;
  }

  .page-gdpr__image-wrapper img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }

  .page-gdpr__cta-button, .page-gdpr__contact-button {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }

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

/* Ensure content images are never smaller than 200px in width/height */
/* This rule applies to all images within .page-gdpr except the hero background image which is handled by object-fit */
.page-gdpr__image-wrapper img {
  min-width: 200px;
  min-height: 200px;
}