.page-gdpr {
  color: #333333; /* Dark text for default light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: #004aad; /* Main brand color for hero background */
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px;
  overflow: hidden;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle background effect */
  z-index: 0;
}

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

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

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1em;
  min-width: 150px;
  text-align: center;
}

.page-gdpr__button--primary {
  background-color: #ffcc00;
  color: #004aad;
  border: 2px solid #ffcc00;
}

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

.page-gdpr__button--secondary {
  background-color: transparent;
  color: #ffcc00;
  border: 2px solid #ffcc00;
}

.page-gdpr__button--secondary:hover {
  background-color: #ffcc00;
  color: #004aad;
  transform: translateY(-2px);
}

.page-gdpr__button--margin-top {
  margin-top: 20px;
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #004aad;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__feature-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-gdpr__feature-image {
  width: 100%; /* Ensures image fits card width */
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min-width */
  min-height: 200px; /* Enforce min-height */
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #004aad;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-gdpr__card-link:hover {
  color: #e6b800;
  text-decoration: underline;
}

.page-gdpr__contact-section {
  background-color: #004aad;
  color: #ffffff;
  padding: 60px 20px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

.page-gdpr__contact-section .page-gdpr__section-title {
  color: #ffcc00;
}

.page-gdpr__contact-detail {
  font-size: 1.1em;
  margin-bottom: 10px;
}

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

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

.page-gdpr__cta-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #f0f8ff;
  border-radius: 10px;
}

/* Responsive adjustments */
@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: 0.95em;
  }

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

  .page-gdpr__hero-actions {
    flex-direction: column;
  }

  .page-gdpr__button {
    width: 100%;
    max-width: 300px;
  }

  .page-gdpr__feature-image {
    max-width: 100%;
    height: auto;
  }

  /* Ensure all content images are responsive and not too small */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min-width for content images */
    min-height: 200px; /* Enforce min-height for content images */
  }
}

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

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

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

  .page-gdpr__button {
    padding: 10px 20px;
  }
}