.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: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1000px; /* Constrain image width for better layout */
  margin-top: 30px;
}

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

.page-gdpr__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-gdpr__main-title {
  font-size: 2.8em;
  color: #8B0000; /* Deep red for main title */
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button background */
  color: #333333; /* Dark text for gold button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.page-gdpr__container--centered {
  text-align: center;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #8B0000; /* Deep red for section titles */
  margin-bottom: 30px;
  text-align: center;
}

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

.page-gdpr__paragraph--small {
  font-size: 0.9em;
  color: #666666;
}

.page-gdpr__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-gdpr__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__text-content {
  flex: 1;
}

.page-gdpr__image-wrapper {
  flex: 1;
  min-width: 250px; /* Ensure images are not too small */
}

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

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  background-color: #fffaf0; /* Light cream background for list */
  border-left: 5px solid #FFD700; /* Gold accent */
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__list-item {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
  position: relative;
  padding-left: 30px;
}

.page-gdpr__list-item::before {
  content: '✔';
  color: #8B0000; /* Deep red checkmark */
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-gdpr__section-cookies a {
  color: #8B0000;
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr__section-cookies a:hover {
  color: #FFD700;
}

.page-gdpr__cta-button--secondary {
  background-color: #8B0000;
  color: #ffffff;
  margin-top: 20px;
}

.page-gdpr__cta-button--secondary:hover {
  background-color: #a00000;
  transform: translateY(-3px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
  }

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

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

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

  .page-gdpr__content-grid {
    flex-direction: column;
    gap: 30px;
  }

  .page-gdpr__content-grid--reverse {
    flex-direction: column;
  }

  .page-gdpr__image-wrapper {
    min-width: unset;
    order: -1; /* Image appears above text on mobile for reverse layout */
  }

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

  .page-gdpr__list-item {
    font-size: 1em;
    padding-left: 25px;
  }
}