.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 space below fixed header */
}

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

.page-gdpr__hero-section {
  background-color: #003366; /* Primary brand color */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  object-fit: cover;
  filter: grayscale(50%); /* Allowed for subtle background effect, not color change */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
}

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

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

.page-gdpr__hero-button, .page-gdpr__contact-button {
  display: inline-block;
  background-color: #FFD700; /* Secondary brand color */
  color: #003366; /* Primary brand color for text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__hero-button:hover, .page-gdpr__contact-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: #001a33;
}

.page-gdpr__intro-section, .page-gdpr__principles-section, .page-gdpr__rights-section, .page-gdpr__contact-section {
  padding: 60px 0;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #003366; /* Primary brand color */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr__section-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555555;
}

.page-gdpr__principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 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.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__principle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gdpr__principle-image {
  width: 100%; /* Ensures image fits card width */
  max-width: 400px; /* Max width for consistency */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum height */
  min-width: 200px; /* Enforce minimum width */
}

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

.page-gdpr__card-text {
  font-size: 1em;
  color: #666666;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: left;
}

.page-gdpr__list-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333333;
}

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

.page-gdpr__text-link {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr__text-link:hover {
  color: #FFD700;
}

.page-gdpr__contact-section {
  background-color: #f0f4f8; /* Light background for contrast */
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__hero-description {
    font-size: 1.2em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: var(--header-offset, 80px);
  }
  .page-gdpr__hero-section {
    padding: 60px 0;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-gdpr__hero-image, .page-gdpr__principle-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min width for mobile */
    min-height: 200px; /* Ensure min height for mobile */
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-text {
    font-size: 0.95em;
  }
  .page-gdpr__principles-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__principle-card {
    padding: 25px;
  }
  .page-gdpr__card-title {
    font-size: 1.3em;
  }
  .page-gdpr__list-item {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  /* Ensure all content images within .page-gdpr are responsive and not too small */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum width for content images */
    min-height: 200px; /* Enforce minimum 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__hero-button, .page-gdpr__contact-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__intro-section, .page-gdpr__principles-section, .page-gdpr__rights-section, .page-gdpr__contact-section {
    padding: 40px 0;
  }
}