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

.page-gdpr__hero-section {
  background-color: rgba(0, 123, 255, 0.2); /* Semi-transparent primary color background */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-gdpr__main-heading {
  font-size: 2.8em;
  color: #ffc107; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__intro-paragraph {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-gdpr__call-to-action {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-gdpr__button--primary {
  background-color: #ffc107; /* Auxiliary color for primary action */
  color: #000000; /* Dark text for contrast */
  border: 2px solid #ffc107;
}

.page-gdpr__button--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
}

.page-gdpr__button--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #007bff; /* Primary color for secondary action border */
}

.page-gdpr__button--secondary:hover {
  background-color: #0056b3; /* Darker primary color on hover */
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-gdpr__content-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for content blocks */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__content-section--alt {
  background-color: rgba(0, 123, 255, 0.1); /* Primary color tinted background */
}

.page-gdpr__section-heading {
  font-size: 2.2em;
  color: #ffc107;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__sub-heading {
  font-size: 1.8em;
  color: #007bff; /* Primary color for sub-headings */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin: 30px 0;
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px; /* Enforce minimum image size */
}

.page-gdpr__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-gdpr__list-item {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 4px solid #ffc107;
  border-radius: 4px;
  font-size: 1.05em;
  line-height: 1.5;
}

.page-gdpr__list-item strong {
  color: #007bff;
}

.page-gdpr__inline-link {
  color: #ffc107;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__inline-link:hover {
  color: #e0a800;
  text-decoration: underline;
}

.page-gdpr__contact-section {
  text-align: center;
  margin: 80px auto;
  max-width: 800px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }

  .page-gdpr__main-heading {
    font-size: 2em;
  }

  .page-gdpr__intro-paragraph {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-gdpr__call-to-action {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__button {
    width: 100%;
    min-width: unset;
  }

  .page-gdpr__content-section {
    margin: 40px 15px;
    padding: 30px 20px;
  }

  .page-gdpr__section-heading {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-gdpr__sub-heading {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-gdpr__paragraph {
    font-size: 0.95em;
  }

  .page-gdpr__list-item {
    padding: 12px 15px;
    font-size: 0.9em;
  }

  .page-gdpr__contact-section {
    margin: 60px 15px;
    padding: 30px 20px;
  }

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

@media (max-width: 480px) {
  .page-gdpr__main-heading {
    font-size: 1.8em;
  }

  .page-gdpr__section-heading {
    font-size: 1.6em;
  }

  .page-gdpr__sub-heading {
    font-size: 1.3em;
  }
}