.page-gdpr {
  background-color: #B71C1C;
  color: #FFF5E1;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

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

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

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

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

.page-gdpr__main-title {
  font-size: clamp(1.75rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #FFF5E1;
  letter-spacing: -0.02em;
}

.page-gdpr__intro-text {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 30px;
  color: #FFF5E1;
  opacity: 0.9;
}

.page-gdpr__content-section {
  background-color: #D32F2F;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #F2B544;
}

.page-gdpr__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 20px;
  color: #F4D34D;
  border-bottom: 2px solid #7A0E0E;
  padding-bottom: 10px;
}

.page-gdpr__paragraph {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #FFF5E1;
}

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

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

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

.page-gdpr__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 2px solid #F2B544;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-gdpr__contact-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E; /* Deep Red for text on gold button */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.page-gdpr__contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.page-gdpr__related-links {
  background-color: #D32F2F;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #F2B544;
}

.page-gdpr__link-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.page-gdpr__link-item {
  display: block;
  background-color: #7A0E0E;
  color: #FFF5E1;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  border: 1px solid #C91F17;
}

.page-gdpr__link-item:hover {
  background-color: #C91F17;
  color: #F4D34D;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-gdpr__hero-image {
    aspect-ratio: 16/9; /* Slightly wider aspect ratio for smaller screens */
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    margin-bottom: 30px;
  }
  .page-gdpr__content-section {
    padding: 20px;
    margin-bottom: 20px;
  }
  .page-gdpr__section-title {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    margin-bottom: 15px;
  }
  .page-gdpr__paragraph, .page-gdpr__list-item {
    font-size: 0.95rem;
  }
  .page-gdpr__contact-button {
    padding: 10px 20px;
    font-size: 1rem;
  }
  .page-gdpr__link-list {
    flex-direction: column;
  }
  .page-gdpr__link-item {
    width: 100%;
    text-align: center;
  }

  /* Mobile image overflow prevention */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-gdpr__hero-content {
    padding: 0 10px;
  }
  .page-gdpr__main-title {
    font-size: clamp(1.1rem, 4.5vw, 1.75rem);
  }
  .page-gdpr__intro-text {
    font-size: 0.9rem;
  }
  .page-gdpr__content-section {
    padding: 15px;
  }
  .page-gdpr__section-title {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }
  .page-gdpr__list-item {
    padding-left: 20px;
  }
  .page-gdpr__list-item::before {
    left: -5px;
  }
}