.page-gdpr {
  background-color: #0D0E12;
  color: #FFF3E6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 20px; /* Add some padding at the bottom for spacing */
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px; /* Spacing below hero */
}

.page-gdpr__hero-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.page-gdpr__hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5; /* Approx 1920x600 */
  object-fit: cover;
  object-position: center;
  min-width: 200px; /* Ensure images are not too small */
  min-height: 200px;
}

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

.page-gdpr__main-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: #FFB04D; /* Glow color for main title */
  margin-bottom: 15px;
}

.page-gdpr__intro-text {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: #FFF3E6;
  margin-bottom: 30px;
}

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

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

.page-gdpr__section-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: #FF8C1A;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid #A84F0C;
  padding-bottom: 10px;
}

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

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

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

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

.page-gdpr__button-group {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-gdpr__contact-btn {
  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: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.page-gdpr__contact-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #FFB04D 0%, #D96800 100%);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-banner img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__section-title {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }
  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 0.95rem;
  }
}

@media (max-width: 549px) {
  .page-gdpr__hero-content {
    padding: 10px 15px 30px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }
  .page-gdpr__intro-text {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
  }
  .page-gdpr__contact-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

/* Ensure content area images are not too small */
.page-gdpr img {
  min-width: 200px;
  min-height: 200px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
  }
}