.page-gdpr {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Explicitly set to match body background if needed for specific sections */
  padding-top: var(--header-offset, 120px); /* Ensures 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 */
}

.page-gdpr__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers the area without distortion */
  z-index: 1;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF; /* Light text over potentially dark/rich hero image */
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay for text readability */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF; /* Ensure title is white */
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0; /* Slightly off-white for description */
  line-height: 1.6;
}

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

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

.page-gdpr__section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: left;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #000000; /* Main text color for titles */
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__section-text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333333;
}

.page-gdpr__section-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__rights-item,
.page-gdpr__measures-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FCBC45; /* Accent color */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #333333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-gdpr__rights-item strong,
.page-gdpr__measures-item strong {
  color: #000000;
}

.page-gdpr__link {
  color: #FCBC45; /* Accent color for links */
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__link:hover {
  text-decoration: underline;
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #000000; /* Main color for contact button */
  color: #FFFFFF; /* White text for button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.page-gdpr__contact-button:hover {
  background-color: #333333;
}

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

@media (max-width: 768px) {
  .page-gdpr__hero-content {
    padding: 30px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__hero-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__section {
    margin: 40px auto;
    padding: 0 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-text {
    font-size: 0.95em;
  }
  .page-gdpr__rights-item,
  .page-gdpr__measures-item {
    padding: 15px;
    font-size: 1em;
  }
  /* Ensure content area images are responsive and don't overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-content {
    padding: 20px;
  }
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 0.9em;
  }
  .page-gdpr__hero-cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__rights-item,
  .page-gdpr__measures-item {
    font-size: 0.9em;
  }
  /* Ensure images in content sections are at least 200px wide if possible, but responsive */
  .page-gdpr__section-image {
    min-width: 200px; /* Enforce minimum width if the layout allows */
  }
}