.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-deep-green);
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0;
  background-color: var(--bg-deep-green);
}

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  margin-top: -150px; /* Adjust to bring content slightly over image for visual effect */
  background-color: var(--bg-card);
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

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

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

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

.page-gdpr__btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 2px solid var(--deep-green);
}

.page-gdpr__btn-secondary:hover {
  background-color: var(--deep-green);
  color: #ffffff;
  box-shadow: 0 0 15px var(--glow);
}

.page-gdpr__content-section {
  padding: 60px 0;
  background-color: var(--bg-deep-green);
}

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

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

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

.page-gdpr__text-block {
  font-size: 1.05em;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__list,
.page-gdpr__sub-list,
.page-gdpr__contact-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-gdpr__list-item,
.page-gdpr__sub-list-item,
.page-gdpr__contact-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.page-gdpr__list-item::before,
.page-gdpr__contact-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.page-gdpr__sub-list-item::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--glow);
  font-weight: bold;
}

.page-gdpr__highlight {
  color: var(--text-main);
  font-weight: bold;
}

.page-gdpr__image-section {
  padding: 40px 0;
  background-color: var(--bg-deep-green);
  display: flex;
  justify-content: center;
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: block;
}

.page-gdpr__faq-section {
  padding: 60px 0;
  background-color: var(--bg-card);
}

.page-gdpr__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-gdpr__faq-item {
  background-color: var(--bg-deep-green);
  border: 1px solid var(--divider);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-gdpr__faq-item summary {
  list-style: none;
}

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--bg-deep-green);
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: var(--deep-green);
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  background-color: var(--deep-green);
}

.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 18px 25px;
  font-size: 1em;
  color: var(--text-secondary);
  border-top: 1px solid var(--divider);
}

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

.page-gdpr__contact-section {
  padding: 60px 0;
  background-color: var(--bg-deep-green);
  text-align: center;
}

.page-gdpr__contact-list {
  display: inline-block;
  text-align: left;
  margin-top: 30px;
}

.page-gdpr__contact-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: var(--text-secondary);
}

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

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

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

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

  .page-gdpr__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;
  }

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

  .page-gdpr__text-block,
  .page-gdpr__list-item,
  .page-gdpr__sub-list-item,
  .page-gdpr__contact-item {
    font-size: 0.95em;
  }

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

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

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

  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__hero-image-wrapper,
  .page-gdpr__hero-content,
  .page-gdpr__image-section,
  .page-gdpr__faq-section,
  .page-gdpr__contact-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

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

  .page-gdpr__hero-image {
    width: 100%;
    height: auto;
  }
}

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

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

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

/* Custom Color Variables */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --bg-card: #11271B;
  --bg-deep-green: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* Contrast Fixes - Assuming body is dark */
.page-gdpr {
  color: var(--text-main); /* Main text color for dark body background */
}

.page-gdpr__content-area p,
.page-gdpr__content-area li {
  color: var(--text-secondary);
}

.page-gdpr__card,
.page-gdpr__hero-content {
  background-color: var(--bg-card);
  color: var(--text-main);
}

.page-gdpr__section-title {
  color: var(--text-main);
}

.page-gdpr__faq-question {
  color: var(--text-main);
}

.page-gdpr__faq-answer {
  color: var(--text-secondary);
}

.page-gdpr__contact-item {
  color: var(--text-secondary);
}

.page-gdpr__contact-link {
  color: var(--gold);
}