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

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px; /* Minimum height for hero section */
  text-align: center;
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
}

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

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for bright button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-gdpr__hero-button:hover {
  background-color: #E0A830;
}

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

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #FCBC45; /* Highlight color */
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.page-gdpr__image-block {
  text-align: center;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure content images are not too small */
  min-height: 200px;
}

.page-gdpr__commitment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-gdpr__card {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-10px);
}

.page-gdpr__card-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  min-width: 200px; /* Ensure card images are not too small */
  min-height: 200px;
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-gdpr__card-description {
  color: #F0F0F0;
}

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

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-gdpr__rights-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 5px solid #FCBC45;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.05em;
  color: #FFFFFF;
}

.page-gdpr__rights-item strong {
  color: #FCBC45;
}

.page-gdpr__button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr__button--primary {
  background-color: #FCBC45;
  color: #000000;
}

.page-gdpr__button--primary:hover {
  background-color: #E0A830;
}

.page-gdpr__button--secondary {
  background-color: #FFFFFF;
  color: #000000;
}

.page-gdpr__button--secondary:hover {
  background-color: #E0E0E0;
}

.page-gdpr__contact-cta {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__contact-wrapper {
  max-width: 800px;
}

.page-gdpr__contact-title {
  font-size: 2.5em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-gdpr__contact-description {
  font-size: 1.2em;
  color: #F0F0F0;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__content-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__image-block {
    order: -1; /* Image first on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    min-height: 400px;
  }
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 0.9em;
  }
  .page-gdpr__section-title,
  .page-gdpr__contact-title {
    font-size: 1.8em;
  }
  .page-gdpr__commitment-cards {
    grid-template-columns: 1fr;
  }
  .page-gdpr__text-block p,
  .page-gdpr__section-intro,
  .page-gdpr__contact-description {
    font-size: 0.95em;
  }
  .page-gdpr__image,
  .page-gdpr__card-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure content images are not too small */
    min-height: 200px;
  }
  .page-gdpr__rights-item {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.5em;
  }
  .page-gdpr__hero-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-gdpr__section-title,
  .page-gdpr__contact-title {
    font-size: 1.5em;
  }
}