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

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 20px; /* Space below hero content */
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-gdpr__hero-content {
  padding: 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #FFF3E6;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #FF8C1A, #FFA53A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.page-gdpr__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF3E6;
}

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

.page-gdpr__content-section {
  padding: 40px 0;
  background-color: #0D0E12;
}

.page-gdpr__section-title {
  color: #FF8C1A;
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-gdpr__paragraph {
  margin-bottom: 20px;
  color: #FFF3E6;
}

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

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

.page-gdpr__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C;
  min-width: 200px;
  min-height: 200px;
}

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

.page-gdpr__link: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: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-gdpr__section-title {
    font-size: 1.6em;
  }

  .page-gdpr__intro-text {
    font-size: 1em;
  }

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

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

@media (max-width: 480px) {
  .page-gdpr__hero-content {
    padding: 15px;
  }

  .page-gdpr__container {
    padding: 15px;
  }

  .page-gdpr__section-title {
    font-size: 1.4em;
  }

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