.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #f9f9f9; /* Inherited from body via shared.css */
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

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

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

.page-gdpr__hero-content {
  position: relative; /* Ensure content is above image if z-index is used, but not overlapping */
  z-index: 1;
  max-width: 900px;
  margin: -150px auto 0; /* Adjust margin to bring content closer to image while maintaining separation */
  padding: 40px 20px;
  background: #08160F; /* Dark background from custom palette */
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: #F2FFF6; /* Light text for dark background */
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 2.8em);
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold color for main title */
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Secondary text color */
}

.page-gdpr__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button color */
  color: #F2FFF6; /* Light text for dark button */
  border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D;
}

.page-gdpr__btn-secondary {
  background: #11271B; /* Card BG color as secondary button background */
  color: #F2FFF6; /* Light text for dark button */
  border: 2px solid #2E7A4E; /* Border color */
}

.page-gdpr__btn-secondary:hover {
  background: #2E7A4E;
  color: #F2FFF6;
  box-shadow: 0 0 15px rgba(46, 122, 78, 0.5);
}

.page-gdpr__section {
  padding: 60px 20px;
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-gdpr__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #11A84E; /* Main brand color for section titles */
}

.page-gdpr__dark-section .page-gdpr__section-title {
  color: #F2C14E; /* Gold color for titles on dark sections */
}

.page-gdpr__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333333; /* Default dark text for light backgrounds */
}

.page-gdpr__dark-section .page-gdpr__text-block,
.page-gdpr__dark-bg .page-gdpr__text-block {
  color: #A7D9B8; /* Secondary text color for dark backgrounds */
}

.page-gdpr__keyword {
  font-weight: bold;
  color: #11A84E; /* Highlight keywords with main brand color */
}

.page-gdpr__dark-section .page-gdpr__keyword {
  color: #F2C14E; /* Gold for keywords on dark backgrounds */
}

.page-gdpr__light-bg {
  background-color: #f9f9f9;
  color: #333333;
}

.page-gdpr__dark-bg,
.page-gdpr__dark-section {
  background-color: #08160F; /* Background color from custom palette */
  color: #F2FFF6; /* Main text color for dark backgrounds */
}

.page-gdpr__image-container {
  margin: 40px 0;
  text-align: center;
}

.page-gdpr__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
}

.page-gdpr__image-container--small .page-gdpr__content-image {
  max-width: 600px;
}

.page-gdpr__principle-list,
.page-gdpr__rights-list,
.page-gdpr__protection-list,
.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__principle-item,
.page-gdpr__rights-item,
.page-gdpr__protection-item,
.page-gdpr__contact-item {
  background: #11271B; /* Card BG color */
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #F2FFF6; /* Light text for dark card */
  border: 1px solid #2E7A4E; /* Border color */
}

.page-gdpr__light-bg .page-gdpr__principle-item,
.page-gdpr__light-bg .page-gdpr__rights-item,
.page-gdpr__light-bg .page-gdpr__protection-item,
.page-gdpr__light-bg .page-gdpr__contact-item {
  background: #ffffff; /* White background for cards on light sections */
  color: #333333; /* Dark text */
  border: 1px solid #e0e0e0;
}

.page-gdpr__principle-title,
.page-gdpr__rights-title,
.page-gdpr__protection-title,
.page-gdpr__contact-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
  color: #F2C14E; /* Gold color for sub-titles */
}

.page-gdpr__light-bg .page-gdpr__principle-title,
.page-gdpr__light-bg .page-gdpr__rights-title,
.page-gdpr__light-bg .page-gdpr__protection-title,
.page-gdpr__light-bg .page-gdpr__contact-title {
  color: #11A84E; /* Main brand color for sub-titles on light sections */
}

.page-gdpr__contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
}

.page-gdpr__contact-details .page-gdpr__image-container {
  flex: 1 1 400px;
  margin: 0;
}

.page-gdpr__contact-details .page-gdpr__contact-list {
  flex: 2 1 600px;
  margin: 0;
}

.page-gdpr__contact-link {
  color: #11A84E; /* Main brand color for links */
  text-decoration: underline;
}

.page-gdpr__dark-bg .page-gdpr__contact-link,
.page-gdpr__dark-section .page-gdpr__contact-link {
  color: #57E38D; /* Glow color for links on dark backgrounds */
}

.page-gdpr__contact-link:hover {
  text-decoration: none;
  opacity: 0.8;
}

.page-gdpr__related-links {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.page-gdpr__related-links li {
  margin-bottom: 5px;
  background: none; /* Override card background for list items */
  padding: 0;
  border: none;
  box-shadow: none;
}

.page-gdpr__conclusion .page-gdpr__section-title {
  color: #F2C14E; /* Gold color for conclusion title */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-content {
    margin-top: -100px;
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-gdpr__hero-content {
    margin-top: -80px;
    padding: 25px 15px;
  }

  .page-gdpr__main-title {
    font-size: 2em;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-gdpr__section {
    padding: 40px 15px;
  }

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

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

  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__image-container,
  .page-gdpr__cta-buttons,
  .page-gdpr__contact-details {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-gdpr__contact-details {
    flex-direction: column;
    gap: 20px;
  }

  .page-gdpr__contact-details .page-gdpr__image-container {
    flex: auto;
  }

  .page-gdpr__contact-details .page-gdpr__contact-list {
    flex: auto;
  }

  .page-gdpr__hero-section {
    padding-bottom: 40px;
  }
  .page-gdpr__principle-item,
  .page-gdpr__rights-item,
  .page-gdpr__protection-item,
  .page-gdpr__contact-item {
    padding: 20px;
  }
}

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

  .page-gdpr__hero-content {
    margin-top: -60px;
  }

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

  .page-gdpr__principle-title,
  .page-gdpr__rights-title,
  .page-gdpr__protection-title,
  .page-gdpr__contact-title {
    font-size: 1.2em;
  }
}