.page-gdpr {
  background-color: #FFFFFF;
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding for first section */
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background-color: #F8F8F8;
  border-bottom: 1px solid #EEEEEE;
  margin-bottom: 30px;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain image width for desktop */
  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: 800px;
}

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

.page-gdpr__intro-text {
  font-size: 1.1rem;
  color: #555555;
  margin-bottom: 20px;
}

.page-gdpr__section {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto 30px auto;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section-title {
  color: #26A9E0;
  font-size: 2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #26A9E0;
  padding-bottom: 10px;
  font-weight: 600;
}

.page-gdpr__paragraph {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #333333;
}

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

.page-gdpr__list-item {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #333333;
}

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

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

.page-gdpr__right-card {
  background-color: #F8F8F8;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-gdpr__right-icon {
  width: 100%; /* Ensure image takes full card width */
  max-width: 200px; /* But don't let it get too big */
  height: auto;
  display: block;
  margin-bottom: 15px;
  border-radius: 4px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-gdpr__card-title {
  color: #26A9E0;
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-gdpr__card-description {
  font-size: 0.95rem;
  color: #555555;
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__contact-cta {
  text-align: center;
  margin-top: 30px;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  color: #FFFFFF; /* White text for contrast */
  background-color: #EA7C07; /* Login color for primary action */
}

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

.page-gdpr__related-policies {
  background-color: #F8F8F8;
  border-top: 1px solid #EEEEEE;
  margin-bottom: 0;
}

.page-gdpr__policy-list {
  list-style: none;
  padding: 0;
  text-align: center;
}

.page-gdpr__policy-item {
  margin-bottom: 10px;
}

.page-gdpr__policy-item a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
}

.page-gdpr__policy-item a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr {
    padding: 0 10px; /* Add some side padding on mobile */
  }
  .page-gdpr__hero-section {
    padding: 15px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .page-gdpr__intro-text {
    font-size: 1rem;
  }
  .page-gdpr__section-title {
    font-size: 1.7rem;
  }
  .page-gdpr__section {
    padding: 15px;
    margin-bottom: 20px;
  }
  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }
  /* Ensure all images in content area are responsive and not smaller than 200px */
  .page-gdpr__hero-image,
  .page-gdpr__right-icon,
  .page-gdpr__content-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min size for content images */
    min-height: 200px;
  }
}

@media (max-width: 549px) {
  .page-gdpr__hero-section {
    padding: 10px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }
  .page-gdpr__section-title {
    font-size: 1.5rem;
  }
  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

/* Ensure content images within .page-gdpr are not smaller than 200px */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  min-width: 200px; /* Global minimum for content images */
  min-height: 200px;
  object-fit: cover;
}

.page-gdpr__hero-image[width="1200"][height="675"] { /* Example for specific image */
  /* CSS width/height should be consistent with HTML attributes or use responsive values */
  max-width: 100%; 
  height: auto; 
}

.page-gdpr__right-icon[width="400"][height="300"] {
  max-width: 100%;
  height: auto;
}

.page-gdpr__content-image[width="800"][height="450"] {
  max-width: 100%;
  height: auto;
}