.page-gdpr {
  background-color: #100224;
  color: #FFFFFF;
  padding-top: 10px; /* Small top padding for first section */
  padding-bottom: 40px;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}

.page-gdpr__hero-image-container {
  width: 100%;
  max-width: 1200px; /* Constrain image container width */
  margin-bottom: 20px;
}

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

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

.page-gdpr__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-gdpr__hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.page-gdpr__section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: #FFFFFF;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 40px;
}

.page-gdpr__content-wrapper {
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding: 0 20px;
  background-color: #017439; /* Main color for content blocks */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-gdpr__content-wrapper p {
  margin-bottom: 15px;
  font-size: 1rem;
  opacity: 0.9;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-gdpr__image--right {
  order: 1; /* Image appears after text on mobile, or right on desktop */
}

.page-gdpr__image--left {
  order: 1; /* Image appears after text on mobile, or left on desktop */
}

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1rem;
}

.page-gdpr__contact-support {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  padding: 30px 20px;
  background-color: #017439;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__contact-text {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #C30808; /* Red for action buttons */
  color: #FFFF00; /* Yellow for button text */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.page-gdpr__btn:hover {
  background-color: #e02a2a;
}

.page-gdpr__related-links {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__related-links p {
  margin-bottom: 15px;
  font-size: 1rem;
  opacity: 0.8;
}

.page-gdpr__link-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-gdpr__link-list li a {
  color: #FFFFFF;
  text-decoration: underline;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.page-gdpr__link-list li a:hover {
  color: #FFFF00;
}

/* Desktop specific layout */
@media (min-width: 850px) {
  .page-gdpr__content-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }

  .page-gdpr__content-wrapper p,
  .page-gdpr__content-wrapper ul {
    flex: 1;
    margin-bottom: 0;
  }

  .page-gdpr__image {
    flex: 0 0 40%; /* Image takes 40% width */
    max-width: 40%;
    margin-bottom: 0;
  }

  .page-gdpr__image--right {
    order: 2;
  }

  .page-gdpr__image--left {
    order: 0;
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-gdpr__hero-image {
    max-width: 100%;
    height: auto;
  }

  .page-gdpr__content-wrapper {
    padding: 20px;
  }

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

  .page-gdpr__link-list {
    flex-direction: column;
    gap: 10px;
  }
}

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

  .page-gdpr__main-title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }

  .page-gdpr__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .page-gdpr__section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
    margin-bottom: 20px;
    padding-top: 30px;
  }

  .page-gdpr__content-wrapper {
    padding: 15px;
  }

  .page-gdpr__content-wrapper p,
  .page-gdpr__list-item {
    font-size: 0.95rem;
  }

  .page-gdpr__contact-support {
    padding: 20px 15px;
  }

  .page-gdpr__contact-text {
    font-size: 1rem;
  }

  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}