.page-gdpr {
  background-color: #08160F; /* Body background from shared.css */
  color: #F2FFF6; /* Main text color */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

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

.page-gdpr__card-bg {
  background-color: #11271B;
}

.page-gdpr__dark-bg {
  background-color: #0A4B2C;
  color: #F2FFF6;
}

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
}

.page-gdpr__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__intro-text {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 30px;
}

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

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

.page-gdpr__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-gdpr__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  color: #57E38D;
  border-color: #57E38D;
}

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

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

.page-gdpr__text-block p {
  margin-bottom: 15px;
}

.page-gdpr__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-gdpr__image-wrapper {
  text-align: center;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: block; /* Ensure no extra space below image */
  margin: 0 auto;
}

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #A7D9B8;
}

.page-gdpr__list li {
  margin-bottom: 10px;
  color: #A7D9B8;
}

.page-gdpr__list strong {
  color: #F2FFF6;
}

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

.page-gdpr__right-item {
  background-color: #0A4B2C;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-gdpr__right-title {
  font-size: 1.3em;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__right-item p {
  color: #A7D9B8;
  font-size: 0.95em;
}

.page-gdpr__inline-link {
  color: #2AD16F;
  text-decoration: underline;
  transition: color 0.3s ease;
}

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

.page-gdpr__contact-info {
  background-color: #0A4B2C;
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
  border: 1px solid #2E7A4E;
}

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

.page-gdpr__contact-info strong {
  color: #F2FFF6;
}

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

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

.page-gdpr__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  overflow: hidden;
  color: #A7D9B8;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 600;
  color: #F2FFF6;
  user-select: none;
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: rgba(46, 122, 78, 0.2);
}

.page-gdpr__faq-item[open] > .page-gdpr__faq-question {
  background-color: rgba(46, 122, 78, 0.3);
}

.page-gdpr__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

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

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #A7D9B8;
}

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

.page-gdpr__last-updated {
  text-align: center;
  font-size: 0.9em;
  color: #A7D9B8;
  margin-top: 40px;
}

/* Details/Summary native styling reset */
.page-gdpr__faq-item summary {
  list-style: none;
}

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

/* Responsive Design */
@media (min-width: 769px) {
  .page-gdpr__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-gdpr__data-usage-section .page-gdpr__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-gdpr__data-usage-section .page-gdpr__image-wrapper {
    order: 2;
  }
  .page-gdpr__data-usage-section .page-gdpr__text-block {
    order: 1;
  }
  .page-gdpr__cookie-policy-section .page-gdpr__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-gdpr__cookie-policy-section .page-gdpr__image-wrapper {
    order: 1;
  }
  .page-gdpr__cookie-policy-section .page-gdpr__text-block {
    order: 2;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .page-gdpr__hero-section {
    padding: 10px 0 40px;
  }

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

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

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
  }

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

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding: 0 15px;
  }

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

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

  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-gdpr__right-title {
    font-size: 1.2em;
  }

  .page-gdpr__contact-info {
    padding: 20px;
    margin: 30px 15px 0;
  }

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

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

  .page-gdpr__faq-answer {
    padding: 0 20px 15px;
  }
  
  /* Mobile image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__section,
  .page-gdpr__card-bg,
  .page-gdpr__container,
  .page-gdpr__hero-content,
  .page-gdpr__content-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  .page-gdpr__commitment-section,
  .page-gdpr__data-definition-section,
  .page-gdpr__data-collection-section,
  .page-gdpr__data-usage-section,
  .page-gdpr__security-measures-section,
  .page-gdpr__your-rights-section,
  .page-gdpr__cookie-policy-section,
  .page-gdpr__contact-section,
  .page-gdpr__faq-section,
  .page-gdpr__policy-changes-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure text blocks within grids also adapt */
  .page-gdpr__content-grid .page-gdpr__text-block {
    padding: 0;
  }
}