.page-gdpr {
  background-color: #140C0C;
  color: #FFF1E8;
  padding-left: 12px;
  padding-right: 12px;
  overflow-x: hidden;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  margin-bottom: 40px;
  max-width: 1390px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-gdpr__hero-content {
  text-align: center;
  max-width: 800px;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F3C54D; /* Gold */
  margin-bottom: 15px;
  font-size: clamp(1.8rem, 4.5vw, 3rem); /* Increased for impact, but clamped */
}

.page-gdpr__description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Ensure button is not too small */
  text-align: center;
}

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

.page-gdpr__content-section {
  max-width: 1000px;
  margin: 0 auto 50px auto;
  padding: 30px;
  background-color: #2A1212; /* Card BG */
  border-radius: 8px;
  border: 1px solid #6A1E1E; /* Border */
}

.page-gdpr__section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: #F3C54D; /* Gold */
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.3;
}

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

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

.page-gdpr__list-item {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.page-gdpr__list-item strong {
  color: #FFB04A; /* Highlight for key terms */
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  max-width: 800px; /* Max width for content images */
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 4/3; /* Common aspect ratio for content images */
}

.page-gdpr__contact .page-gdpr__list {
  list-style: none;
  margin-left: 0;
}

.page-gdpr__contact .page-gdpr__list-item a {
  color: #FFB04A;
  text-decoration: none;
}

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

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-gdpr__hero-section {
    margin-bottom: 30px;
  }

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

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

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

  .page-gdpr__content-section {
    padding: 20px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-image-wrapper img, .page-gdpr__content-image {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__button {
    width: 100%;
    max-width: 280px; /* Constrain button width on mobile */
  }
}

@media (max-width: 549px) {
  .page-gdpr {
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
  .page-gdpr__description {
    font-size: 0.95rem;
  }
  .page-gdpr__section-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }
  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 0.9rem;
  }
  .page-gdpr__list {
    margin-left: 15px;
  }
  .page-gdpr__content-section {
    padding: 15px;
    margin-bottom: 30px;
  }
  .page-gdpr__button {
    padding: 10px 20px;
    min-width: unset;
  }
}