.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 500px;
  background-color: #000000; /* Body background is dark, so hero uses dark background */
  color: #ffffff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.page-gdpr__hero-container {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-gdpr__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-gdpr__hero-description {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #f0f0f0;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-gdpr__content-section {
  padding: 60px 20px;
}

.page-gdpr__content-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-gdpr__section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
  color: #017439; /* Brand color for titles on light background */
}

.page-gdpr__sub-title {
  font-size: 1.8rem;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #017439; /* Brand color for subtitles on light background */
}

.page-gdpr__text-block {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.page-gdpr__list--numbered {
  list-style: decimal;
}

.page-gdpr__list-item {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.page-gdpr__inline-link {
  color: #017439;
  text-decoration: underline;
}

.page-gdpr__inline-link:hover {
  color: #004d2b;
}

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

.page-gdpr__faq-section {
  padding: 60px 20px;
  background-color: #000000; /* Dark background from body */
  color: #ffffff;
}

.page-gdpr__faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-gdpr__faq-section .page-gdpr__section-title {
  color: #ffffff; /* White title on dark background */
}

.page-gdpr__faq-list {
  margin-top: 30px;
}

.page-gdpr__faq-item {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-gdpr__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}

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

.page-gdpr__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-gdpr__faq-qtext {
  flex-grow: 1;
  color: #ffffff;
}

.page-gdpr__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #FFFF00; /* Yellow for toggle icon */
}

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

.page-gdpr__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #f0f0f0;
}

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

.page-gdpr__dark-bg {
  background-color: #000000;
  color: #ffffff;
}

.page-gdpr__dark-bg .page-gdpr__section-title, 
.page-gdpr__dark-bg .page-gdpr__sub-title {
  color: #ffffff;
}

.page-gdpr__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-gdpr__light-bg .page-gdpr__section-title, 
.page-gdpr__light-bg .page-gdpr__sub-title {
  color: #017439;
}

.page-gdpr__btn-primary {
  display: inline-block;
  background: #017439;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
  margin-top: 20px;
}

.page-gdpr__btn-primary:hover {
  background-color: #004d2b;
  border-color: #004d2b;
}

.page-gdpr__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 3rem;
  }
  .page-gdpr__hero-description {
    font-size: 1.2rem;
  }
  .page-gdpr__section-title {
    font-size: 2rem;
  }
  .page-gdpr__sub-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 60px 15px;
    min-height: 400px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2rem;
  }
  .page-gdpr__hero-description {
    font-size: 1rem;
  }
  .page-gdpr__content-section,
  .page-gdpr__faq-section {
    padding: 40px 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.8rem;
  }
  .page-gdpr__sub-title {
    font-size: 1.4rem;
  }
  .page-gdpr__text-block,
  .page-gdpr__list-item,
  .page-gdpr__faq-answer {
    font-size: 0.95rem;
  }
  .page-gdpr__faq-item summary {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
  .page-gdpr__faq-toggle {
    font-size: 1.5rem;
  }

  /* Image and Video responsive adaptation */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__hero-container,
  .page-gdpr__content-container,
  .page-gdpr__faq-container,
  .page-gdpr__video-section,
  .page-gdpr__video-container,
  .page-gdpr__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Button responsive adaptation */
  .page-gdpr__cta-button,
  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary,
  .page-gdpr a[class*="button"],
  .page-gdpr a[class*="btn"] {
    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;
    text-align: center;
  }
  .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; 
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8rem;
  }
  .page-gdpr__hero-description {
    font-size: 0.9rem;
  }
  .page-gdpr__section-title {
    font-size: 1.5rem;
  }
  .page-gdpr__sub-title {
    font-size: 1.2rem;
  }
  .page-gdpr__btn-primary {
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-gdpr__faq-item summary {
    font-size: 1rem;
    padding: 12px 15px;
  }
  .page-gdpr__faq-answer {
    padding: 10px 15px 15px;
  }
}