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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a decent height */
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

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

.page-gdpr__hero-content {
  max-width: 800px;
  padding: 40px;
  background: rgba(44, 62, 80, 0.85); /* Semi-transparent dark blue background */
  border-radius: 10px;
  color: #ffffff; /* Light text for dark background */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-gdpr__main-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #2C3E50; /* Dark text for gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gdpr__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.7;
}

.page-gdpr__article {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-gdpr__article-heading {
  font-size: 2.2em;
  color: #2C3E50; /* Dark blue for headings */
  margin-bottom: 25px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-gdpr__sub-heading {
  font-size: 1.8em;
  color: #2C3E50; /* Dark blue for sub-headings */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-gdpr__article-paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #555555;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #555555;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-gdpr__list-item strong {
  color: #2C3E50;
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 40px 0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #2C3E50; /* Dark blue button */
  color: #ffffff; /* Light text for dark button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gdpr__contact-button:hover {
  background-color: #3f5872; /* Lighter dark blue on hover */
  transform: translateY(-3px);
}

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

  .page-gdpr__hero-content {
    padding: 30px 20px;
    max-width: 90%;
  }

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

  .page-gdpr__intro-text {
    font-size: 1em;
  }

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

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

  .page-gdpr__article {
    padding: 20px;
  }

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

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

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

  /* Mobile content image constraint */
  .page-gdpr__content-image {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
  }
}

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

  .page-gdpr__intro-text {
    font-size: 0.9em;
  }

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

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