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

.page-gdpr__hero-section {
  position: relative;
  background-color: #0A246A; /* Dark blue background for hero section */
  color: #ffffff; /* Light text for dark background */
  padding: 80px 20px;
  text-align: center;
  overflow: hidden; /* Ensure content doesn't spill */
}

.page-gdpr__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 800px; /* Constrain image width within hero */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

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

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #F3C70E; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__hero-button,
.page-gdpr__call-to-action-button {
  display: inline-block;
  background-color: #F3C70E; /* Gold button */
  color: #0A246A; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__hero-button:hover,
.page-gdpr__call-to-action-button:hover {
  background-color: #e0b60d; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff; /* White background for content blocks */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: -40px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 2;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #0A246A; /* Dark blue for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #F3C70E; /* Gold underline */
  padding-bottom: 10px;
}

.page-gdpr__text-block {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #333333;
}

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

.page-gdpr__principle-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

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

.page-gdpr__card-title {
  font-size: 1.4em;
  color: #0A246A;
  margin-bottom: 15px;
}

.page-gdpr__card-description {
  color: #555555;
}

.page-gdpr__rights-list,
.page-gdpr__protection-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  color: #333333;
}

.page-gdpr__rights-list li,
.page-gdpr__protection-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-gdpr__rights-list strong,
.page-gdpr__protection-list strong {
  color: #0A246A;
}

.page-gdpr__dpo-contact-info {
  background-color: #eef4fb; /* Light blueish background */
  border-left: 5px solid #0A246A;
  padding: 30px;
  margin: 40px 0;
  border-radius: 8px;
}

.page-gdpr__dpo-contact-info .page-gdpr__card-title {
  color: #0A246A;
  margin-bottom: 10px;
}

.page-gdpr__dpo-contact-info p {
  margin-bottom: 10px;
  color: #333333;
}

.page-gdpr__dpo-contact-info a {
  color: #0A246A;
  text-decoration: underline;
}

.page-gdpr__dpo-contact-info a:hover {
  color: #F3C70E;
}

.page-gdpr__button-secondary {
  display: inline-block;
  background-color: #0A246A; /* Dark blue button */
  color: #ffffff; /* White text */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: normal;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.page-gdpr__button-secondary:hover {
  background-color: #1a3a8a; /* Slightly lighter blue on hover */
}

.page-gdpr__call-to-action {
  background-color: #0A246A; /* Dark blue CTA background */
  color: #ffffff;
  padding: 60px 30px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
}

.page-gdpr__call-to-action-title {
  font-size: 2.5em;
  color: #F3C70E;
  margin-bottom: 20px;
}

.page-gdpr__call-to-action-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

/* General link styling */
.page-gdpr__text-block a,
.page-gdpr__principle-card a {
  color: #0A246A; /* Dark blue for links */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__text-block a:hover,
.page-gdpr__principle-card a:hover {
  color: #F3C70E; /* Gold on hover */
}

/* Image styling */
.page-gdpr__image-full-width {
  width: 100%;
  max-width: 100%; /* Ensure it fits container */
  height: auto;
  display: block;
  margin: 40px 0;
  border-radius: 10px;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum height */
  min-width: 200px; /* Enforce minimum width */
}

/* Responsive design */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }

  .page-gdpr__hero-description,
  .page-gdpr__call-to-action-description {
    font-size: 1em;
  }

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

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

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

  .page-gdpr__hero-section {
    padding: 60px 15px;
  }

  /* Ensure images are responsive and don't overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Still enforce minimum size */
    min-height: 200px; /* Still enforce minimum size */
  }

  .page-gdpr__image-full-width {
    margin: 20px 0;
  }
}

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

  .page-gdpr__hero-button,
  .page-gdpr__call-to-action-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-gdpr__call-to-action-title {
    font-size: 2em;
  }
}