.page-gdpr {
  background-color: #B71C1C;
  color: #FFF5E1;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  min-height: 80vh;
  overflow-x: hidden;
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5;
  object-fit: cover;
  object-position: center;
  margin-bottom: 20px;
}

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

.page-gdpr__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFF5E1;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /* Using clamp for responsive font size, avoiding fixed large values */
  font-size: clamp(1.8rem, 4vw + 1rem, 2.8rem); 
}

.page-gdpr__description {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.6;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-gdpr__content-section {
  padding: 20px 0;
}

.page-gdpr__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
  background-color: #D32F2F; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #F2B544; /* Border color */
}

.page-gdpr__section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: #F4D34D; /* Gold */
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #7A0E0E; /* Deep Red */
  padding-bottom: 10px;
}

.page-gdpr__sub-heading {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  color: #FFCC66; /* Glow */
  margin-top: 25px;
  margin-bottom: 15px;
  border-left: 4px solid #F4D34D; /* Gold */
  padding-left: 10px;
}

.page-gdpr__paragraph {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  opacity: 0.9;
}

.page-gdpr__paragraph--small {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 20px;
}

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

.page-gdpr__list-item {
  background-color: #7A0E0E; /* Deep Red */
  border-left: 3px solid #F4D34D; /* Gold */
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  line-height: 1.5;
}

.page-gdpr__list-item strong {
  color: #FFCC66; /* Glow */
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__image--centered {
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  margin-top: 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red for contrast */
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  text-align: center;
  width: auto;
  min-width: 150px;
}

.page-gdpr__button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

.page-gdpr__link {
  color: #FFCC66; /* Glow */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #F4D34D; /* Gold */
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-gdpr__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .page-gdpr__section-heading {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  .page-gdpr__sub-heading {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }
  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 0.95rem;
  }
  .page-gdpr__container {
    padding: 20px;
  }
  .page-gdpr__button {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-gdpr__hero-image {
    aspect-ratio: 16/9; /* Slightly taller for mobile hero */
  }
}

@media (max-width: 549px) {
  .page-gdpr__main-title {
    font-size: clamp(1.3rem, 7vw, 2.2rem);
  }
  .page-gdpr__section-heading {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
  .page-gdpr__sub-heading {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
  }
  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 0.9rem;
  }
  .page-gdpr__container {
    padding: 15px;
    margin: 0 10px;
  }
  .page-gdpr__hero-content {
    padding: 0 10px;
  }
  .page-gdpr__image {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure content area images are not smaller than 200px and responsive on mobile */
@media (max-width: 768px) {
  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px; /* Enforce minimum display size */
    min-height: 200px; /* Enforce minimum display size */
  }
}

/* Ensure images within .page-gdpr do not have filter properties */
.page-gdpr img {
  filter: none; /* Explicitly disable any filter effects */
}