.page-gdpr {
  background-color: #08160F; /* Background color from custom palette */
  color: #F2FFF6; /* Text Main color from custom palette */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  background-color: #08160F;
  overflow: hidden;
}

.page-gdpr__hero-content-wrapper {
  width: 100%;
  max-width: 1400px; /* Adjust as needed */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

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

.page-gdpr__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  /* No fixed font-size, rely on responsive scaling and other properties */
}

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

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__intro-section, .page-gdpr__rights-section, .page-gdpr__contact-section {
  background-color: #08160F;
}

.page-gdpr__principles-section, .page-gdpr__protection-section, .page-gdpr__commitment-section {
  background-color: #11271B; /* Card BG as section background */
}

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

.page-gdpr__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #2AD16F;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr__text {
  font-size: 1em;
  color: #A7D9B8;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-gdpr__list-item {
  background-color: #11271B;
  border-left: 4px solid #2AD16F;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: #F2FFF6;
  font-size: 1.05em;
}

.page-gdpr__list-item-title {
  color: #F2FFF6;
  font-weight: bold;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-gdpr__image--center {
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
  max-width: 45%;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
  max-width: 45%;
}

.page-gdpr__cta-buttons {
  text-align: center;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-gdpr__link {
  color: #2AD16F;
  text-decoration: underline;
}

.page-gdpr__link:hover {
  color: #57E38D;
}

/* Color Contrast Specific Styles */
.page-gdpr__dark-bg {
  background-color: #11271B;
  color: #F2FFF6; /* Text Main */
}

.page-gdpr__light-bg {
  background-color: #08160F;
  color: #A7D9B8; /* Text Secondary, assuming this is a lighter text on dark */
}

/* Ensure images are not filtered */
.page-gdpr img {
  filter: none;
}

/* Responsive Styles */
@media (min-width: 769px) {
  .page-gdpr__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em);
  }
  .page-gdpr__hero-content-wrapper {
    flex-direction: row;
    text-align: left;
    padding: 40px;
  }
  .page-gdpr__hero-image {
    flex: 1;
    max-width: 50%;
    margin-right: 30px;
    margin-bottom: 0;
  }
  .page-gdpr__hero-text-container {
    flex: 1;
    text-align: left;
    padding: 0;
  }
  .page-gdpr__image--left, .page-gdpr__image--right {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__main-title {
    font-size: 2.2em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-gdpr__hero-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .page-gdpr__hero-text-container {
    padding: 0 15px;
  }
  .page-gdpr__image {
    margin: 30px auto;
    float: none;
    max-width: 100%;
  }
  .page-gdpr__image--left, .page-gdpr__image--right {
    float: none;
    margin: 30px auto;
    max-width: 100%;
  }

  /* Mobile specific overrides for images, videos, buttons */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__hero-content-wrapper,
  .page-gdpr__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-gdpr__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-gdpr__hero-image {
    border-radius: 0;
  }
  .page-gdpr__cta-button,
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 10px; /* Add some spacing between stacked buttons */
  }
  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .page-gdpr__video-section {
    padding-top: 10px !important; /* body already handles --header-offset, this is for visual spacing */
  }
  .page-gdpr__list-item {
    padding: 15px;
  }
}