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

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  height: 500px; /* Fixed height for hero section */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF; /* White text over dark hero image */
  text-align: center;
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay for readability */
  border-radius: 8px;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FCBC45; /* Login button color for emphasis */
}

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

.page-gdpr__section {
  padding: 60px 20px;
  border-bottom: 1px solid #eee;
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

.page-gdpr__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-gdpr__heading {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
}

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

.page-gdpr__paragraph--note {
  font-style: italic;
  text-align: center;
  margin-top: 30px;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-align: center;
}

.page-gdpr__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for contrast */
}

.page-gdpr__button--primary:hover {
  background-color: #e0a53a;
}

.page-gdpr__button--secondary {
  background-color: #000000; /* Primary brand color */
  color: #FFFFFF; /* White text for contrast */
  margin-top: 30px;
}

.page-gdpr__button--secondary:hover {
  background-color: #333333;
}

.page-gdpr__button--tertiary {
  background-color: #FFFFFF; /* White background */
  color: #000000; /* Black text */
  border: 1px solid #000000;
  margin-top: 30px;
}

.page-gdpr__button--tertiary:hover {
  background-color: #f0f0f0;
}

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

.page-gdpr__card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__card-icon {
  width: 400px; /* Enforced min size for content images */
  height: 267px; /* Enforced min size for content images (maintains aspect ratio for 600x400) */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

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

.page-gdpr__data-points {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.page-gdpr__data-point {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-gdpr__data-point-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 20px;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 20px;
  color: #333333;
}

.page-gdpr__list--numbered {
  list-style-type: decimal;
}

.page-gdpr__list li {
  margin-bottom: 10px;
}

.page-gdpr__list li strong {
  color: #000000;
}

.page-gdpr__rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-gdpr__right-card {
  background-color: #f9f9f9;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-gdpr__right-title {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-gdpr__right-description {
  color: #555555;
  font-size: 0.9em;
}

.page-gdpr__security-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0 auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__contact-info {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
}

.page-gdpr__contact-detail {
  margin-bottom: 10px;
}

.page-gdpr__contact-detail a {
  color: #FCBC45;
  text-decoration: none;
}

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

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

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

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

  .page-gdpr__heading {
    font-size: 1.8em;
  }

  .page-gdpr__grid, .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__data-point {
    flex: 1 1 100%;
  }

  /* Ensure images in content area are responsive and not too small */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }

  .page-gdpr__card-icon {
    width: 100%; /* Make card icons fill width on mobile */
    height: auto;
    min-width: 200px;
    min-height: 133px; /* Adjust height based on 600x400 aspect ratio */
  }

  .page-gdpr__security-image {
    width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 150px; /* Adjust height based on 800x600 aspect ratio */
  }
}