.page-gdpr {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-gdpr__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-gdpr__main-title {
  font-size: clamp(1.1rem, 4.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-gdpr__lead-paragraph {
  font-size: 1.1em;
  line-height: 1.6;
  color: #A7D9B8;
}

.page-gdpr__content-section {
  padding: 60px 0;
  border-top: 1px solid #1E3A2A;
}

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

.page-gdpr__section-title {
  font-size: 2em;
  color: #F2FFF6;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
}

.page-gdpr__paragraph {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr__list-item {
  background-color: #11271B;
  border-left: 4px solid #11A84E;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 4px;
  color: #F2FFF6;
  line-height: 1.6;
}

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

.page-gdpr__inline-link {
  color: #57E38D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__inline-link:hover {
  color: #2AD16F;
}

.page-gdpr__image-text-layout {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

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

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

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

.page-gdpr__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  filter: none; /* No color filters */
}

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

.page-gdpr__list--grid .page-gdpr__list-item {
  border-left: none;
  border-bottom: 4px solid #11A84E;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.page-gdpr__list-title {
  font-size: 1.2em;
  color: #57E38D;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-gdpr__list-description {
  font-size: 0.95em;
  color: #A7D9B8;
  line-height: 1.5;
}

.page-gdpr__button-group {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-gdpr__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

/* Responsive Styles */
@media (max-width: 849px) {
  .page-gdpr__image-text-layout {
    flex-direction: column;
  }

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

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

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

@media (max-width: 768px) {
  .page-gdpr__hero-image-wrapper img,
  .page-gdpr__image-wrapper img {
    max-width: 100%;
    height: auto;
  }

  .page-gdpr__main-title {
    padding: 0 10px;
  }

  .page-gdpr__lead-paragraph {
    padding: 0 10px;
  }
}

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

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

  .page-gdpr__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}