.page-gdpr {
  background-color: #0D0E12;
  color: #FFF3E6;
  padding-bottom: 40px;
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 40px;
  text-align: center;
  max-width: 100%;
  overflow-x: hidden;
}

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

.page-gdpr__hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  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, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FF8C1A;
  letter-spacing: -0.02em;
}

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

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

.page-gdpr__content-section--alt-bg {
  background-color: #17191F;
}

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

.page-gdpr__section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #FF8C1A;
  margin-bottom: 25px;
  text-align: left;
}

.page-gdpr__sub-title {
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  font-weight: 600;
  color: #FFA53A;
  margin-top: 0;
  margin-bottom: 15px;
}

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

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

.page-gdpr__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
}

.page-gdpr__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #FFA53A;
  font-weight: bold;
}

.page-gdpr__list--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-gdpr__image-text-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}

.page-gdpr__image-text-block--reverse {
  flex-direction: column-reverse;
}

.page-gdpr__image-wrapper {
  flex: 1;
  min-width: 200px;
}

.page-gdpr__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__text-content {
  flex: 1;
}

.page-gdpr__contact-section {
  text-align: center;
  padding: 50px 0;
}

.page-gdpr__contact-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 20px;
}

.page-gdpr__contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 176, 77, 0.4);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-gdpr__list--grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-gdpr__image-text-block {
    flex-direction: row;
    text-align: left;
  }

  .page-gdpr__image-text-block--reverse {
    flex-direction: row-reverse;
  }

  .page-gdpr__text-content {
    padding-left: 30px;
  }

  .page-gdpr__image-text-block--reverse .page-gdpr__text-content {
    padding-left: 0;
    padding-right: 30px;
  }

  .page-gdpr__section-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-gdpr__main-title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }

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

  .page-gdpr__section-title {
    font-size: clamp(1.3rem, 6vw, 2rem);
    text-align: center;
  }

  .page-gdpr__sub-title {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
  }

  .page-gdpr__content-section p, .page-gdpr__list-item {
    font-size: 0.95rem;
  }

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

  .page-gdpr__contact-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 549px) {
  .page-gdpr__list-item {
    padding-left: 20px;
  }
  .page-gdpr__list-item::before {
    left: -5px; /* Adjust for smaller screens */
  }
}