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

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #007bff; /* Main brand color for hero background */
  color: #ffffff;
  padding: 0; /* Padding handled by hero-content */
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text readability, not changing color */
}

.page-gdpr__hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Overlay for text readability */
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #ffc107; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-gdpr__hero-cta {
  display: inline-block;
  background-color: #ffc107; /* Accent color for CTA button */
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-gdpr__hero-cta:hover {
  background-color: #e0a800;
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #007bff; /* Main brand color for section titles */
  margin-bottom: 30px;
  text-align: center;
}

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

.page-gdpr__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
}

.page-gdpr__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-gdpr__card-description {
  font-size: 0.95em;
  color: #555555;
}

.page-gdpr__rights-list,
.page-gdpr__security-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-gdpr__list-item {
  background-color: #f9f9f9;
  border-left: 5px solid #007bff; /* Accent border */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 1.05em;
}

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

.page-gdpr__contact-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-link:hover {
  text-decoration: underline;
}

.page-gdpr__contact-email {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-email:hover {
  text-decoration: underline;
}

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

.page-gdpr__cta-section {
  background-color: #007bff; /* Main brand color */
  color: #ffffff;
  padding: 50px 30px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
}

.page-gdpr__cta-title {
  font-size: 2em;
  color: #ffc107; /* Accent color for CTA title */
  margin-bottom: 15px;
}

.page-gdpr__cta-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #ffc107; /* Accent color for CTA button */
  color: #000000;
  padding: 18px 35px;
  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: #e0a800;
  transform: translateY(-2px);
}

/* Mobile responsiveness */
@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__paragraph {
    font-size: 1em;
  }

  .page-gdpr__card-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__card-image {
    height: 200px;
  }

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

  /* Ensure content area images do not overflow on mobile */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}