.page-gdpr {
  background-color: #0D0E12;
  color: #FFF3E6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-gdpr__hero-section {
  padding-top: 10px; /* Minimal padding to avoid overlap with sticky header */
  padding-bottom: 40px;
  text-align: center;
  background-color: #17191F;
}

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

.page-gdpr__main-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FF8C1A;
  text-shadow: 0 0 10px rgba(255, 140, 26, 0.5);
}

.page-gdpr__description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #FFF3E6;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #17191F; /* Subtle separator */
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

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

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

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

.page-gdpr__list-item {
  background-color: #17191F;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  border-left: 4px solid #FF8C1A;
  color: #FFF3E6;
  font-size: 1rem;
}

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

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

.page-gdpr__image--inline {
  max-width: 800px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__link {
  color: #FFA53A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #FFB04D;
  text-decoration: underline;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  margin-top: 20px;
}

.page-gdpr__button--primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
}

.page-gdpr__button--primary:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #FF8C1A 100%);
  box-shadow: 0 0 15px #FFB04D;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-gdpr__container {
    padding: 0 15px;
  }

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

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

  .page-gdpr__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }

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

  .page-gdpr__list-item {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .page-gdpr__paragraph {
    font-size: 0.95rem;
  }

  /* Ensure content area images are responsive and don't overflow */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-gdpr__section {
    padding: 40px 0;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.3rem, 7vw, 2.2rem);
  }

  .page-gdpr__description {
    font-size: 0.9rem;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
  }

  .page-gdpr__list-item {
    font-size: 0.9rem;
  }

  .page-gdpr__paragraph {
    font-size: 0.9rem;
  }

  .page-gdpr__button {
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px;
  }

  /* Critical for mobile overflow */
  .page-gdpr {
    overflow-x: hidden;
  }
}