.page-gdpr {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-gdpr__hero-section {
  background-color: #0A2463; /* Primary color background */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-gdpr__hero-container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 900px; /* Constrain image width within hero */
  object-fit: cover;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 800px;
  margin-top: 30px;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E3B23C; /* Secondary color for title emphasis */
  font-weight: bold;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.8;
}

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

.page-gdpr__content-section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #0A2463; /* Primary color for section titles */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #E3B23C; /* Secondary color underline */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  border-radius: 2px;
}

.page-gdpr__section-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

.page-gdpr__list-item {
  background-color: #f9f9f9;
  border-left: 5px solid #E3B23C;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-size: 1em;
}

.page-gdpr__list-item strong {
  color: #0A2463;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #E3B23C; /* Secondary color for CTA */
  color: #0A2463; /* Primary color text for contrast */
  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: #f5db9c; /* Lighter gold on hover */
  transform: translateY(-3px);
}

.page-gdpr__cta-button--inline {
  display: block;
  text-align: center;
  margin: 40px auto;
  max-width: 300px;
}

.page-gdpr__contact-info {
  background-color: #f0f4f8;
  border: 1px solid #dcdcdc;
  padding: 30px;
  border-radius: 8px;
  margin: 40px auto;
  max-width: 600px;
  text-align: center;
}

.page-gdpr__contact-info p {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-gdpr__contact-link,
.page-gdpr__text-link {
  color: #0A2463; /* Primary color for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover,
.page-gdpr__text-link:hover {
  color: #E3B23C; /* Secondary color on hover */
}

/* Responsive Design */
@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__section-paragraph {
    font-size: 0.95em;
  }

  .page-gdpr__list-item {
    padding: 12px 15px;
  }

  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  /* Ensure content images are responsive and do not overflow */
  .page-gdpr__hero-image,
  .page-gdpr__section-image {
    max-width: 100%;
    height: auto;
  }

  .page-gdpr__container {
    padding: 0 15px;
  }

  .page-gdpr__content-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }

  .page-gdpr__hero-title {
    font-size: 1.6em;
  }

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

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

  .page-gdpr__section-paragraph {
    font-size: 0.9em;
  }

  .page-gdpr__list-item {
    font-size: 0.9em;
  }

  .page-gdpr__cta-button {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-gdpr__contact-info {
    padding: 20px;
  }
}