.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__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gdpr__hero-section {
  background-color: #0A192F; /* Primary dark blue */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.page-gdpr__hero-button, .page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* 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.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-gdpr__overview-section, .page-gdpr__data-management-section, .page-gdpr__resources-section {
  padding: 60px 0;
}

.page-gdpr__overview-section {
  background-color: #F8F8F8; /* Light background for contrast */
}

.page-gdpr__data-management-section {
  background-color: #f0f0f0;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #0A192F;
  text-align: center;
  margin-bottom: 40px;
}

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

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

.page-gdpr__card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-gdpr__card-image {
  width: 100%; /* Card images should fill card width */
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

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

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

.page-gdpr__card-link {
  display: inline-block;
  color: #0A192F;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-gdpr__card-link:hover {
  color: #FFD700;
  border-color: #0A192F;
}

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

.page-gdpr__list-item {
  background-color: #FFFFFF;
  border-left: 5px solid #FFD700;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-gdpr__list-title {
  font-size: 1.6em;
  color: #0A192F;
  margin-bottom: 10px;
}

.page-gdpr__list-text {
  font-size: 1em;
  color: #555555;
}

.page-gdpr__cta-box {
  background-color: #0A192F;
  color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin-top: 50px;
}

.page-gdpr__cta-text {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #FFD700;
}

.page-gdpr__links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  text-align: center;
}

.page-gdpr__resource-link {
  display: block;
  background-color: #FFFFFF;
  color: #0A192F;
  padding: 18px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-gdpr__resource-link:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

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

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }
  .page-gdpr__hero-description {
    font-size: 1.1em;
  }
  .page-gdpr__hero-button, .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-text {
    font-size: 1em;
  }
  .page-gdpr__card-image, .page-gdpr__card {
    max-width: 100%;
  }
  .page-gdpr__card-image {
    height: auto; /* Allow height to adjust for responsiveness */
    max-width: 100%;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px;
  }
  .page-gdpr__card-title {
    font-size: 1.5em;
  }
  .page-gdpr__list-title {
    font-size: 1.4em;
  }
  .page-gdpr__cta-text {
    font-size: 1.3em;
  }
  .page-gdpr__resource-link {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }

  /* Ensure 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: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 0.95em;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__cta-text {
    font-size: 1.1em;
  }
  .page-gdpr__cards-grid, .page-gdpr__links-grid {
    grid-template-columns: 1fr;
  }
}