.page-gdpr {
  color: #333333; /* Dark text for light body background */
}

.page-gdpr__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #007bff; /* Primary color background for hero */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-gdpr__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1000px; /* Constrain image width */
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}

.page-gdpr__hero-content {
  max-width: 800px;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-gdpr__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-gdpr__hero-cta {
  display: inline-block;
  background-color: #28a745; /* Secondary color for CTA */
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__hero-cta:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

.page-gdpr__content-area {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: -60px; /* Overlap with hero section */
  position: relative;
  z-index: 2;
}

.page-gdpr__article-heading {
  font-size: 2.5em;
  color: #007bff; /* Primary color for main headings */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 15px;
}

.page-gdpr__sub-heading {
  font-size: 1.8em;
  color: #0056b3; /* Slightly darker primary for sub-headings */
  margin-top: 35px;
  margin-bottom: 20px;
}

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

.page-gdpr__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-gdpr__list-item {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #333333;
}

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

.page-gdpr__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px;
}

.page-gdpr__link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-gdpr__cta-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
  margin-top: 60px;
  border-radius: 0 0 12px 12px;
}

.page-gdpr__cta-text {
  font-size: 1.6em;
  color: #333333;
  margin-bottom: 25px;
  font-weight: 600;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #007bff; /* Primary color for CTA button */
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-right: 20px;
}

.page-gdpr__cta-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-gdpr__cta-link {
  display: inline-block;
  color: #007bff;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
  padding: 15px 20px;
  transition: color 0.3s ease;
}

.page-gdpr__cta-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

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

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

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

  .page-gdpr__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-gdpr__content-area {
    padding: 30px 15px;
    margin-top: -30px;
  }

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

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

  .page-gdpr__article-paragraph,
  .page-gdpr__list-item {
    font-size: 0.95em;
  }

  .page-gdpr__image-inline {
    max-width: 100%;
    height: auto;
  }

  .page-gdpr__cta-section {
    padding: 30px 15px;
  }

  .page-gdpr__cta-text {
    font-size: 1.3em;
  }

  .page-gdpr__cta-button {
    font-size: 1.1em;
    padding: 12px 30px;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-gdpr__cta-link {
    font-size: 1em;
  }
}

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

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

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

  .page-gdpr__cta-button,
  .page-gdpr__cta-link {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}