.page-gdpr {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Darken image for better text contrast */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent black background for text */
  border-radius: 10px;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  margin: 10px;
}

.page-gdpr__button--primary {
  background-color: #FFD700;
  color: #000000;
  border: 2px solid #FFD700;
}

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

.page-gdpr__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-gdpr__button--secondary:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-3px);
}

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

.page-gdpr__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-gdpr__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #cccccc;
  line-height: 1.6;
}

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

.page-gdpr__principle-card, .page-gdpr__right-item {
  background: rgba(255, 255, 255, 0.05); /* Slightly transparent white for cards */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 250px; /* Ensure cards have consistent height */
}

.page-gdpr__principle-card:hover, .page-gdpr__right-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__principle-image, .page-gdpr__right-icon {
  width: 200px; /* Minimum size for content images */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__card-title, .page-gdpr__right-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-gdpr__card-text, .page-gdpr__right-text {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
}

.page-gdpr__contact-section {
  background: rgba(0, 0, 0, 0.3); /* Darker background for contrast */
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-gdpr__contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-gdpr__contact-image {
  width: 400px; /* Minimum size for content images */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-gdpr__contact-info {
  max-width: 600px;
}

.page-gdpr__contact-text {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 3em;
  }
  .page-gdpr__section-title {
    font-size: 2.2em;
  }
  .page-gdpr__card-title, .page-gdpr__right-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__section-intro {
    font-size: 0.95em;
  }
  .page-gdpr__principles-grid, .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__principle-card, .page-gdpr__right-item {
    padding: 20px;
  }
  .page-gdpr__hero-content {
    padding: 30px 15px;
  }
  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__contact-details {
    flex-direction: column;
  }
  .page-gdpr__contact-image {
    width: 100%;
    max-width: 400px;
  }
  .page-gdpr__hero-section .page-gdpr__hero-image,
  .page-gdpr__principles-section img,
  .page-gdpr__rights-section img,
  .page-gdpr__contact-section img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__principles-section .page-gdpr__principle-image,
  .page-gdpr__rights-section .page-gdpr__right-icon,
  .page-gdpr__contact-section .page-gdpr__contact-image {
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__button {
    display: block;
    margin: 10px auto;
  }
}