.page-gdpr {
  background-color: #FFFFFF;
  color: #333333; /* Default text color for contrast on white background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 40px;
  background-color: #017439; /* Main color for hero background */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1920px;
  margin-bottom: 20px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

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

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /* No fixed font-size, rely on weight/line-height for hierarchy */
  font-size: clamp(28px, 4vw, 48px); /* Example clamp for responsive H1 */
}

.page-gdpr__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-gdpr__contact-button {
  display: inline-block;
  background-color: #017439;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid #FFFFFF;
}

.page-gdpr__contact-button:hover {
  background-color: #005a2e;
  border-color: #FFFF00; /* Subtle hover change */
}

.page-gdpr__contact-button--secondary {
  background-color: #C30808; /* Register/Login button color */
  color: #FFFF00; /* Register/Login font color */
  border: none;
}

.page-gdpr__contact-button--secondary:hover {
  background-color: #a30606;
}

.page-gdpr__section {
  padding: 40px 20px;
  margin-bottom: 20px;
}

.page-gdpr__section:nth-of-type(odd) {
  background-color: #f9f9f9;
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #017439;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__text {
  font-size: 1em;
  margin-bottom: 15px;
}

.page-gdpr__brand-name {
  font-weight: bold;
  color: #017439;
}

.page-gdpr__image-with-text {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.page-gdpr__image-with-text--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-gdpr__image-with-text .page-gdpr__list {
  flex: 1;
  min-width: 300px;
  list-style: none;
  padding: 0;
}

.page-gdpr__list-item {
  background-color: #e6f7ed; /* Light green for list items */
  border-left: 5px solid #017439;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 4px;
  font-size: 1.05em;
}

.page-gdpr__list-item strong {
  color: #017439;
}

.page-gdpr__link {
  color: #017439;
  text-decoration: underline;
  font-weight: bold;
}

.page-gdpr__link:hover {
  color: #005a2e;
}

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

.page-gdpr__contact-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

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

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 10px 15px 30px;
  }

  .page-gdpr__main-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .page-gdpr__description {
    font-size: 1em;
  }

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

  .page-gdpr__image-with-text {
    flex-direction: column;
  }

  .page-gdpr__image-with-text--reverse {
    flex-direction: column;
  }

  .page-gdpr__image {
    max-width: 100%;
    height: auto;
  }

  .page-gdpr__image-with-text .page-gdpr__list {
    min-width: unset;
    width: 100%;
  }

  /* Enforce min-width for all content area images */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
  }
}

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

  .page-gdpr__list-item {
    font-size: 0.95em;
  }
}