.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__hero-section {
  background-color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: bold;
}

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

.page-gdpr__principles-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-gdpr__principle-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__principle-image {
  max-width: 100%; /* Ensure image fits card */
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 5px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-gdpr__principle-text {
  color: #555555;
  font-size: 0.95em;
}

.page-gdpr__rights-section {
  padding: 60px 0;
  background-color: #f5f5f5;
}

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

.page-gdpr__right-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #333333;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-gdpr__right-item strong {
  color: #000000;
}

.page-gdpr__rights-action {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #555555;
}

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

.page-gdpr__contact-link:hover {
  color: #FCBC45;
}

.page-gdpr__contact-section,
.page-gdpr__cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-gdpr__contact-section {
  background-color: #ffffff;
}

.page-gdpr__cta-section {
  background-color: #f9f9f9;
  border-top: 1px solid #eeeeee;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #000000; /* Main color for buttons */
  color: #ffffff; /* White text for dark button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
}

.page-gdpr__button:hover {
  background-color: #FCBC45; /* Login button color for hover */
  color: #000000; /* Dark text on hover */
  transform: translateY(-2px);
}

.page-gdpr__button--explore {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Black text for light button */
}

.page-gdpr__button--explore:hover {
  background-color: #000000; /* Main color for hover */
  color: #ffffff; /* White text on hover */
}

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

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

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

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

  .page-gdpr__principles-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__principle-card {
    padding: 20px;
  }

  .page-gdpr__principle-image {
    min-width: 200px;
    min-height: 200px;
    max-width: 100%;
    height: auto;
  }

  .page-gdpr__right-item {
    padding: 15px 20px;
    font-size: 1em;
  }

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

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }

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

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

  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}