.page-gdpr {
  color: #333333; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

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

.page-gdpr__hero-section {
  background-color: #f0f0f0; /* Light background for hero section */
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF; /* White text over dark hero image */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 80%;
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-gdpr__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFFFFF;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

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

.page-gdpr__hero-button {
  display: inline-block;
  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;
}

.page-gdpr__hero-button--register {
  background-color: #FFFFFF; /* White for Register */
  color: #000000; /* Black text */
  border: 2px solid #FFFFFF;
}

.page-gdpr__hero-button--register:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.page-gdpr__hero-button--login {
  background-color: #FCBC45; /* Yellow for Login */
  color: #000000; /* Black text */
  border: 2px solid #FCBC45;
}

.page-gdpr__hero-button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-gdpr__section-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__principles-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-gdpr__card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid #eee;
}

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

.page-gdpr__card-icon {
  width: 250px; /* Min 200px */
  height: 187px; /* Min 200px (approx 4:3 aspect) */
  object-fit: contain;
  margin-bottom: 20px;
}

.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__rights-section {
  background-color: #f0f0f0;
  padding: 80px 0;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.page-gdpr__rights-item {
  background-color: #FFFFFF;
  border-left: 5px solid #000000;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.page-gdpr__rights-heading {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

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

.page-gdpr__action-area {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__action-text {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 30px;
}

.page-gdpr__action-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
  transition: background-color 0.3s ease;
}

.page-gdpr__action-button:first-of-type {
  background-color: #000000;
  color: #FFFFFF;
}

.page-gdpr__action-button:first-of-type:hover {
  background-color: #333333;
}

.page-gdpr__action-button--secondary {
  background-color: #FCBC45;
  color: #000000;
}

.page-gdpr__action-button--secondary:hover {
  background-color: #e0a53b;
}

.page-gdpr__security-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-gdpr__feature-item {
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-gdpr__feature-icon {
  width: 250px; /* Min 200px */
  height: 187px; /* Min 200px (approx 4:3 aspect) */
  object-fit: contain;
  margin-bottom: 20px;
}

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

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

.page-gdpr__contact-section {
  background-color: #f0f0f0;
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__contact-details {
  margin-top: 30px;
  margin-bottom: 40px;
}

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

.page-gdpr__contact-item a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr__contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-gdpr__contact-button {
  display: inline-block;
  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;
}

.page-gdpr__contact-button:first-of-type {
  background-color: #000000;
  color: #FFFFFF;
}

.page-gdpr__contact-button:first-of-type:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-gdpr__contact-button--support {
  background-color: #FCBC45;
  color: #000000;
}

.page-gdpr__contact-button--support:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }

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

  .page-gdpr__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__hero-button {
    width: 80%;
    margin: 0 auto;
  }

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

  .page-gdpr__section-intro {
    font-size: 0.95em;
  }

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

  .page-gdpr__hero-image, .page-gdpr__card-icon, .page-gdpr__feature-icon {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and do not cause overflow */
  }

  .page-gdpr__action-button, .page-gdpr__contact-button {
    width: 90%;
    margin: 10px auto;
    display: block;
  }

  .page-gdpr__contact-buttons {
    flex-direction: column;
  }

  /* Ensure all content images within .page-gdpr are responsive */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}