.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--Text-Main); /* Default light text for dark body background */
  background-color: var(--Background); /* Ensure dark background */
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #08160F 0%, #11271B 100%); /* Custom background */
}

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

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

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
  color: var(--Text-Main);
}

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

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

.page-gdpr__btn-primary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom button color */
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  background: var(--Card-B-G); /* Custom background color */
  color: var(--Text-Main); /* Custom text color */
  border: 2px solid var(--Border); /* Custom border color */
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-gdpr__btn-secondary:hover {
  background: var(--Border);
  color: #ffffff;
}

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

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

.page-gdpr__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--Text-Main);
}

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

.page-gdpr__intro-gdpr {
  background-color: var(--Background); /* Default for light background sections */
  color: var(--Text-Main);
}

.page-gdpr__principles {
  background-color: var(--Card-B-G); /* Custom background color */
  color: var(--Text-Main);
}

.page-gdpr__dark-bg {
  background-color: var(--Card-B-G);
  color: var(--Text-Main);
}

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

.page-gdpr__grid-3-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__grid-2-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__card {
  background-color: var(--Card-B-G); /* Custom card background */
  border: 1px solid var(--Border); /* Custom border color */
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--Text-Main);
}

.page-gdpr__card-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--Text-Main);
}

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

.page-gdpr__list li {
  margin-bottom: 10px;
  color: var(--Text-Secondary);
}

.page-gdpr__list li strong {
  color: var(--Text-Main);
}

.page-gdpr__image-full-width {
  width: 800px;
  height: 600px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-gdpr__contact-info {
  margin-top: 30px;
  font-size: 1.1em;
  color: var(--Text-Secondary);
}

.page-gdpr__contact-info p {
  margin-bottom: 10px;
}

.page-gdpr__link {
  color: var(--Glow);
  text-decoration: none;
}

.page-gdpr__link:hover {
  text-decoration: underline;
}

.page-gdpr__faq-section {
  padding-bottom: 80px;
}

.page-gdpr__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  color: var(--Text-Main);
  list-style: none;
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--Glow);
}

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

.page-gdpr__faq-answer p {
  margin-bottom: 0;
}

details[open] .page-gdpr__faq-question .page-gdpr__faq-toggle {
  content: '−';
}

/* Mobile Responsiveness */
@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__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em);
  }

  .page-gdpr__intro-text {
    font-size: 1em;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    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 space between stacked buttons */
  }

  .page-gdpr__hero-content a[class*="btn"] {
    margin-bottom: 10px;
  }

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

  .page-gdpr__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__section-title {
    font-size: clamp(1.5em, 7vw, 2em);
    margin-bottom: 30px;
  }

  .page-gdpr__sub-title {
    font-size: 1.3em;
  }

  .page-gdpr__grid-3-columns,
  .page-gdpr__grid-2-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__list {
    margin-left: 20px;
  }

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

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-gdpr__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-gdpr__faq-answer {
    padding: 0 15px 15px;
  }
}

/* Custom Colors */
:root {
  --Primary-Color: #11A84E;
  --Secondary-Color: #22C768;
  --Button: 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;
}

/* Ensure contrast for specific elements if needed, based on body background */
.page-gdpr p,
.page-gdpr li,
.page-gdpr__contact-info {
  color: var(--Text-Secondary);
}

.page-gdpr__card p {
  color: var(--Text-Secondary);
}

/* Ensure all text in dark sections is light */
.page-gdpr__dark-bg h2,
.page-gdpr__dark-bg h3,
.page-gdpr__dark-bg p,
.page-gdpr__dark-bg li {
  color: var(--Text-Main);
}

.page-gdpr__dark-bg .page-gdpr__card-title {
  color: var(--Text-Main);
}

.page-gdpr__dark-bg .page-gdpr__faq-question {
  color: var(--Text-Main);
}

.page-gdpr__dark-bg .page-gdpr__faq-answer {
  color: var(--Text-Secondary);
}

/* Ensure all text in light sections is appropriately colored (using Text-Main/Secondary) */
.page-gdpr__light-bg h2,
.page-gdpr__light-bg h3,
.page-gdpr__light-bg p,
.page-gdpr__light-bg li {
  color: var(--Text-Main);
}

.page-gdpr__light-bg .page-gdpr__list li {
  color: var(--Text-Secondary);
}