.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--Text-Main); /* Fallback for body, will be overridden by specific sections */
  background-color: var(--background); /* Ensure body background is set for contrast calculation */
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  text-align: center;
  background-color: var(--background);
  color: var(--Text-Main);
}

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

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

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__main-title {
  font-size: 2.8em;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--Text-Main);
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--Text-Secondary);
}

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

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

.page-gdpr__section-title {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: var(--Text-Main);
}

.page-gdpr__sub-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--Text-Main);
}

.page-gdpr__text-block {
  margin-bottom: 20px;
  color: var(--Text-Secondary);
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--Text-Secondary);
}

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

.page-gdpr__link {
  color: var(--Gold);
  text-decoration: underline;
}

.page-gdpr__link:hover {
  color: var(--Glow);
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-gdpr__image--centered {
  max-width: 800px;
}

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

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

/* Color Contrast */
.page-gdpr__dark-bg {
  background-color: var(--background);
  color: var(--Text-Main);
}

.page-gdpr__light-bg {
  background-color: #08160F;
  color: var(--Text-Main);
}

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

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

/* FAQ Styles */
.page-gdpr__faq-list {
  margin-top: 40px;
}

.page-gdpr__faq-item {
  background-color: var(--Card-B-G);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--Border);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--Text-Main);
  cursor: pointer;
  background-color: var(--Card-B-G);
  border-bottom: 1px solid transparent; /* default */
}

.page-gdpr__faq-item[open] > .page-gdpr__faq-question {
  border-bottom-color: var(--Divider);
}

.page-gdpr__faq-question::-webkit-details-marker {
  display: none;
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--Gold);
  transition: transform 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg);
}

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: var(--Text-Secondary);
}

.page-gdpr__cta-section {
  background-color: var(--Deep-Green);
  padding: 80px 20px;
  text-align: center;
  color: var(--Text-Main);
}

.page-gdpr__cta-content {
  max-width: 800px;
}

.page-gdpr__cta-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--Text-Main);
}

.page-gdpr__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: var(--Text-Secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.4em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__image--left, .page-gdpr__image--right {
    float: none;
    margin: 30px auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-gdpr__hero-section {
    padding: 10px 15px 40px;
  }
  .page-gdpr__main-title {
    font-size: 2em;
    padding: 0 5px;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
    padding: 0 5px;
  }
  .page-gdpr__btn-primary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 15px !important;
  }
  .page-gdpr__section {
    padding: 40px 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__sub-title {
    font-size: 1.4em;
  }
  .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__cta-section,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-gdpr__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-gdpr__faq-answer {
    padding: 0 20px 15px;
  }
  .page-gdpr__cta-title {
    font-size: 2em;
  }
  .page-gdpr__cta-description {
    font-size: 1em;
  }
  .page-gdpr__image--left, .page-gdpr__image--right {
    margin: 20px auto;
  }
  .page-gdpr__list {
    margin-left: 15px;
  }
}

/* Color palette variables */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --Card-B-G: #11271B;
  --background: #08160F;
  --Text-Main: #F2FFF6;
  --Text-Secondary: #A7D9B8;
  --Border: #2E7A4E;
  --Glow: #57E38D;
  --Gold: #F2C14E;
  --Divider: #1E3A2A;
  --Deep-Green: #0A4B2C;
}