.page-gdpr {
  color: #333333; /* Dark text 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__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff; /* White text on dark hero overlay */
  text-align: center;
  padding: 0; /* Content padding handled by hero-content */
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-gdpr__hero-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px; /* Minimum height for hero section */
  padding: 80px 20px;
  box-sizing: border-box;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.3); /* Slightly darker overlay for text contrast */
  border-radius: 10px;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E3B23C; /* Accent color for title */
}

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

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

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-gdpr__button--primary {
  background-color: #E3B23C; /* Accent color */
  color: #0A2463; /* Dark blue text */
  border: 2px solid #E3B23C;
}

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

.page-gdpr__button--secondary {
  background-color: transparent;
  color: #E3B23C; /* Accent color */
  border: 2px solid #E3B23C;
}

.page-gdpr__button--secondary:hover {
  background-color: rgba(227, 178, 60, 0.1);
  transform: translateY(-2px);
}

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

.page-gdpr__section-title {
  color: #0A2463; /* Main brand color */
  font-size: 2.2em;
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
}

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

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

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

.page-gdpr__principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__card-icon {
  width: 100%; /* Ensure image is not smaller than 200px and responsive */
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
}

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

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

.page-gdpr__rights-list,
.page-gdpr__security-list,
.page-gdpr__sharing-list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.page-gdpr__rights-list li,
.page-gdpr__security-list li,
.page-gdpr__sharing-list li {
  margin-bottom: 15px;
}

.page-gdpr__list-strong {
  color: #0A2463;
}

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

.page-gdpr__data-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.page-gdpr__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__security-image-container,
.page-gdpr__dpo-image-container {
  text-align: center;
  margin: 40px 0;
}

.page-gdpr__security-image,
.page-gdpr__dpo-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-gdpr__contact-info {
  background-color: #f0f5fa;
  border-left: 5px solid #0A2463;
  padding: 25px;
  margin: 30px 0;
  border-radius: 8px;
}

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

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

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

.page-gdpr__cta-section {
  background-color: #0A2463; /* Main brand color */
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 10px;
  margin-top: 60px;
  margin-bottom: 40px;
}

.page-gdpr__cta-title {
  font-size: 2.5em;
  color: #E3B23C; /* Accent color */
  margin-bottom: 20px;
}

.page-gdpr__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__data-collection-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-container {
    min-height: 400px;
    padding: 60px 15px;
  }
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__button {
    width: 100%;
    max-width: 300px;
  }
  .page-gdpr__content-area {
    padding: 30px 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__text-block {
    font-size: 1em;
  }
  .page-gdpr__principles-grid,
  .page-gdpr__data-collection-cards {
    grid-template-columns: 1fr;
  }
  .page-gdpr__rights-list, .page-gdpr__security-list, .page-gdpr__sharing-list {
    margin-left: 20px;
    font-size: 1em;
  }
  .page-gdpr__security-image, .page-gdpr__dpo-image, .page-gdpr__card-image, .page-gdpr__card-icon {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__cta-title {
    font-size: 2em;
  }
  .page-gdpr__cta-description {
    font-size: 1em;
  }
  /* Ensure all content images are responsive and not smaller than 200px */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Minimum width for content images */
    min-height: 200px; /* Minimum height for content images */
    object-fit: cover; /* Ensure images fill their space */
  }
}

@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.5em;
  }
  .page-gdpr__cta-title {
    font-size: 1.8em;
  }
}