.page-gdpr {
  padding-top: 10px; /* Small padding to prevent content from touching the header */
  background-color: #0D0E12;
  color: #FFF3E6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5; /* For 1920x600 */
  object-fit: cover;
  object-position: center;
}

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

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

.page-gdpr__description {
  font-size: 1.1rem;
  color: #FFF3E6;
  margin-bottom: 30px;
}

.page-gdpr__section-card {
  background-color: #17191F;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid #A84F0C;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section-title {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: #FFA53A;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: #D96800;
}

.page-gdpr__text-block {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #FFF3E6;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #FFF3E6;
}

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

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

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

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

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

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

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
}

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

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

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

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

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

  .page-gdpr__text-block, .page-gdpr__list-item {
    font-size: 0.95rem;
  }

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

@media (max-width: 549px) {
  .page-gdpr__container {
    padding: 10px;
  }

  .page-gdpr__hero-content {
    padding: 0 10px;
  }

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

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

  .page-gdpr__section-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.1rem, 5.5vw, 1.6rem);
  }

  .page-gdpr__list {
    margin-left: 20px;
  }

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

  /* Ensure images do not overflow on mobile */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}