.page-gdpr {
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--dark-bg); /* Assuming shared.css defines --dark-bg */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Apply offset if shared does not */
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
  background-color: #0A2342; /* Main brand color for hero background */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px; /* Minimum height for hero section */
  overflow: hidden;
}

.page-gdpr__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 900px;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary brand color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__introduction-section,
.page-gdpr__data-usage-section,
.page-gdpr__user-rights-section,
.page-gdpr__data-retention-section,
.page-gdpr__policy-changes-section,
.page-gdpr__faq-section {
  background-color: #f0f0f0; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
}

.page-gdpr__data-collection-section,
.page-gdpr__data-sharing-section,
.page-gdpr__data-security-section,
.page-gdpr__cookies-section,
.page-gdpr__contact-section {
  background-color: #0A2342; /* Dark background for brand consistency */
  color: #ffffff; /* Light text for dark background */
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for section titles on dark background */
  margin-bottom: 30px;
  text-align: center;
}