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

.page-gdpr__hero-section {
  background-color: #000000; /* Main brand color for hero background */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  max-width: 800px; /* Adjust based on desired hero image size */
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.page-gdpr__hero-content {
  color: #FFFFFF;
  max-width: 900px;
}

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

.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.2s ease;
  font-size: 1.1em;
}

.page-gdpr__button--register, .page-gdpr__button--cta-register {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Text color for register button */
  border: 2px solid #FCBC45;
}

.page-gdpr__button--register:hover, .page-gdpr__button--cta-register:hover {
  background-color: #FFC966;
  transform: translateY(-2px);
}

.page-gdpr__button--learn-more {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-gdpr__button--learn-more:hover {
  background-color: #FFFFFF;
  color: #000000;
  transform: translateY(-2px);
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-gdpr__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

.page-gdpr__subsection-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 25px;
  border-left: 5px solid #FCBC45;
  padding-left: 15px;
}

.page-gdpr__principles-list, .page-gdpr__data-list, .page-gdpr__legal-basis-list, .page-gdpr__sharing-list, .page-gdpr__retention-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 25px;
}

.page-gdpr__principles-item, .page-gdpr__data-item, .page-gdpr__legal-basis-item, .page-gdpr__sharing-item, .page-gdpr__retention-item {
  background-color: #F8F8F8;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-gdpr__principles-heading, .page-gdpr__sharing-heading {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

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

.page-gdpr__right-card, .page-gdpr__security-card {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-gdpr__right-card:hover, .page-gdpr__security-card:hover {
  transform: translateY(-5px);
}

.page-gdpr__right-card-image, .page-gdpr__security-card-image, .page-gdpr__contact-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-gdpr__right-card-title, .page-gdpr__security-card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-gdpr__right-card-description, .page-gdpr__security-card-description {
  font-size: 1em;
  color: #555555;
}

.page-gdpr__rights-callout, .page-gdpr__security-note, .page-gdpr__final-note {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #555555;
}

.page-gdpr__rights-callout a, .page-gdpr__security-note a, .page-gdpr__contact-details a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__rights-callout a:hover, .page-gdpr__security-note a:hover, .page-gdpr__contact-details a:hover {
  text-decoration: underline;
}

.page-gdpr__contact-dpo {
  background-color: #F8F8F8;
  padding: 60px 20px;
  margin-top: 60px;
}

.page-gdpr__contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

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

.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

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

.page-gdpr__cta-section {
  background-color: #000000; /* Main brand color */
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-gdpr__cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__cta-title {
  font-size: 2.8em;
  color: #FCBC45;
  margin-bottom: 25px;
}

.page-gdpr__cta-description {
  font-size: 1.2em;
  color: #F0F0F0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }

  .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__section-title {
    font-size: 2em;
  }

  .page-gdpr__subsection-title {
    font-size: 1.5em;
  }

  .page-gdpr__principles-item, .page-gdpr__data-item, .page-gdpr__legal-basis-item, .page-gdpr__sharing-item, .page-gdpr__retention-item {
    padding: 20px;
  }

  .page-gdpr__principles-heading, .page-gdpr__sharing-heading {
    font-size: 1.2em;
  }

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

  .page-gdpr__right-card-image, .page-gdpr__security-card-image, .page-gdpr__contact-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
  }
  
  .page-gdpr__right-card-image, .page-gdpr__security-card-image, .page-gdpr__contact-image {
    min-width: 200px;
    min-height: 200px;
  }

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

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

  /* Ensure content area images do not overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }

  /* Specific rules to prevent content images from being too small in content area */
  .page-gdpr__content-area img, .page-gdpr__rights-grid img, .page-gdpr__security-features img, .page-gdpr__contact-details img {
    min-width: 200px;
    min-height: 200px;
    width: 100%; /* Ensure they fill their container up to max-width */
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }

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

  .page-gdpr__content-area {
    padding: 30px 15px;
  }

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

  .page-gdpr__subsection-title {
    font-size: 1.3em;
  }

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