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

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

.page-gdpr__hero-section {
  background-color: #002060; /* Main brand color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

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

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary brand color for emphasis */
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-gdpr__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary brand color for buttons */
  color: #002060; /* Dark text on 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__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-gdpr__content-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-gdpr__content-heading {
  font-size: 2.5em;
  color: #002060;
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__sub-heading {
  font-size: 2em;
  color: #002060;
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: left;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555555;
}

.page-gdpr__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto; /* Center the image */
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

.page-gdpr__list-item {
  background-color: #ffffff;
  border-left: 5px solid #002060;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
}

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

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

.page-gdpr__card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease;
}

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

.page-gdpr__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #002060;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-gdpr__card-text {
  font-size: 0.95em;
  color: #666666;
  padding: 0 15px;
}

.page-gdpr__link {
  color: #002060;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #FFD700;
}

.page-gdpr__contact-buttons {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-gdpr__contact-button {
  display: inline-block;
  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, color 0.3s ease;
  border: 2px solid #002060;
  color: #002060;
  background-color: transparent;
}

.page-gdpr__contact-button:hover {
  background-color: #002060;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-gdpr__contact-button--primary {
  background-color: #FFD700;
  color: #002060;
  border-color: #FFD700;
}

.page-gdpr__contact-button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #002060;
}

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

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

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

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

  .page-gdpr__sub-heading {
    font-size: 1.6em;
    margin-top: 40px;
  }

  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 1em;
  }

  .page-gdpr__cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-gdpr__contact-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__contact-button {
    width: 100%;
    max-width: 300px; /* Limit width for small screens */
    margin: 0 auto;
  }

  /* Ensure all images within .page-gdpr are responsive and don't overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

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

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

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

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

  .page-gdpr__card-title {
    font-size: 1.3em;
  }
}