.page-gdpr {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: 'Roboto', sans-serif; /* Assuming Roboto for sans-serif */
  padding-top: 10px; /* Small top padding for first section */
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  background-color: #111111;
  border-bottom: 1px solid #3A2A12;
}

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2C14E; /* Main color for H1 */
  margin-bottom: 20px;
  max-width: 100%;
}

.page-gdpr__intro-text {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-gdpr__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}

.page-gdpr__cta-button--bottom {
  margin-top: 20px;
}

.page-gdpr__content-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #3A2A12;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.page-gdpr__section-title {
  font-size: 2em;
  font-weight: 700;
  color: #FFD36B; /* Accent color for H2 */
  margin-bottom: 25px;
  text-align: center;
}

.page-gdpr__text-block {
  line-height: 1.7;
  font-size: 1.05em;
  color: #FFF6D6;
}

.page-gdpr__text-block p {
  margin-bottom: 1em;
}

.page-gdpr__text-block a {
  color: #F2C14E;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-gdpr__text-block a:hover {
  color: #FFD36B;
}

.page-gdpr__principle-list,
.page-gdpr__rights-list,
.page-gdpr__measures-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

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

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

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  align-self: center;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-gdpr__hero-section {
    padding: 60px 40px;
  }

  .page-gdpr__main-title {
    font-size: clamp(2.5em, 4vw, 3.5em);
  }

  .page-gdpr__content-section {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 80px 40px;
  }

  .page-gdpr__content-section:nth-child(even) {
    flex-direction: row-reverse; /* Alternate image/text on even sections */
  }

  .page-gdpr__text-block {
    flex: 1;
    padding-right: 40px;
  }

  .page-gdpr__content-section:nth-child(even) .page-gdpr__text-block {
    padding-left: 40px;
    padding-right: 0;
  }

  .page-gdpr__content-image {
    flex-shrink: 0;
    width: 400px; /* Fixed width for larger screens, but max-width: 100% still applies */
    height: 300px;
  }

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

  .page-gdpr__about-gdpr .page-gdpr__section-title,
  .page-gdpr__user-rights .page-gdpr__section-title,
  .page-gdpr__contact-data-protection .page-gdpr__section-title {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-gdpr__main-title {
    font-size: 2.2em;
  }

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

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

  .page-gdpr__text-block {
    font-size: 1em;
  }

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