.page-gdpr {
  --background-color-gdpr: #08160F;
  --card-bg-gdpr: #11271B;
  --text-main-gdpr: #F2FFF6;
  --text-secondary-gdpr: #A7D9B8;
  --button-gradient-gdpr: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --border-color-gdpr: #2E7A4E;
  --glow-color-gdpr: #57E38D;
  --gold-color-gdpr: #F2C14E;
  --divider-color-gdpr: #1E3A2A;
  --deep-green-gdpr: #0A4B2C;

  color: var(--text-main-gdpr);
  background-color: var(--background-color-gdpr);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-gdpr h1, .page-gdpr h2, .page-gdpr h3, .page-gdpr h4, .page-gdpr h5, .page-gdpr h6 {
  color: var(--gold-color-gdpr);
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: var(--deep-green-gdpr);
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  box-sizing: border-box;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__hero-content {
  width: 100%;
  max-width: 900px;
  text-align: center;
  color: var(--text-main-gdpr);
  z-index: 1;
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
  color: var(--gold-color-gdpr);
}

.page-gdpr__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-secondary-gdpr);
}

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold-color-gdpr);
}

.page-gdpr__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-main-gdpr);
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background-color-gdpr);
  color: var(--text-main-gdpr);
}

.page-gdpr__content-area.page-gdpr__light-bg {
  background-color: var(--background-color-gdpr);
  color: var(--text-main-gdpr);
}

.page-gdpr__content-area.page-gdpr__dark-section {
  background-color: var(--card-bg-gdpr);
  color: var(--text-main-gdpr);
}

.page-gdpr__text-block {
  padding: 20px;
  border-radius: 8px;
  background-color: var(--card-bg-gdpr);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  color: var(--text-secondary-gdpr);
}

.page-gdpr__light-bg .page-gdpr__text-block {
  background-color: var(--background-color-gdpr);
  box-shadow: none;
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--text-secondary-gdpr);
}

.page-gdpr__text-block ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 15px;
}

.page-gdpr__text-block li {
  margin-bottom: 10px;
  color: var(--text-secondary-gdpr);
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__rights-list .page-gdpr__list-item {
  background-color: var(--background-color-gdpr);
  border: 1px solid var(--border-color-gdpr);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__rights-list .page-gdpr__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-gdpr__contact-list .page-gdpr__list-item {
  background-color: var(--background-color-gdpr);
  border: 1px solid var(--border-color-gdpr);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
  color: var(--text-secondary-gdpr);
}

.page-gdpr__link {
  color: var(--gold-color-gdpr);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: var(--glow-color-gdpr);
  text-decoration: underline;
}

.page-gdpr__btn-primary,
.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: var(--button-gradient-gdpr);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary:hover,
.page-gdpr__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-gdpr__hero-content {
    text-align: center;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

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

  .page-gdpr__section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .page-gdpr__sub-title {
    font-size: clamp(1.2rem, 4.5vw, 1.6rem);
  }

  .page-gdpr__content-area {
    padding: 30px 15px;
  }

  .page-gdpr__text-block {
    padding: 15px;
  }

  /* Images responsive */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__content-area,
  .page-gdpr__text-block,
  .page-gdpr__rights-list .page-gdpr__list-item,
  .page-gdpr__contact-list .page-gdpr__list-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons responsive */
  .page-gdpr__btn-primary,
  .page-gdpr__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}