.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark (#0a0a0a), so use light text */
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #26A9E0; /* Brand color as background */
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 2.8em); /* Use clamp for H1 */
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0;
}

.page-gdpr__section-title--white {
  color: #FFFFFF;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF; /* Light background for content */
  color: #333333; /* Dark text for light background */
  box-sizing: border-box;
}

.page-gdpr__section {
  padding: 40px 20px;
  box-sizing: border-box;
}

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

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

.page-gdpr__text-block {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05em;
}

.page-gdpr__text-block p {
  margin-bottom: 1em;
  color: inherit;
}

.page-gdpr__text-block--white p {
  color: #FFFFFF;
}

.page-gdpr__sub-heading {
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-gdpr__text-block--white .page-gdpr__sub-heading {
  color: #FFFFFF;
}

.page-gdpr__rights-list, .page-gdpr__security-list, .page-gdpr__contact-list, .page-gdpr__process-list {
  list-style: none;
  padding-left: 0;
  max-width: 900px;
  margin: 20px auto;
}

.page-gdpr__rights-item, .page-gdpr__security-item, .page-gdpr__contact-list li, .page-gdpr__process-list li {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white for dark bg */
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: #FFFFFF;
}

.page-gdpr__content-area .page-gdpr__rights-item, .page-gdpr__content-area .page-gdpr__security-item, .page-gdpr__content-area .page-gdpr__contact-list li, .page-gdpr__content-area .page-gdpr__process-list li {
  background-color: #f9f9f9; /* Light grey for light bg */
  color: #333333;
}

.page-gdpr__rights-heading, .page-gdpr__security-heading {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.page-gdpr__content-area .page-gdpr__rights-heading, .page-gdpr__content-area .page-gdpr__security-heading {
  color: #26A9E0;
}

.page-gdpr__rights-item p, .page-gdpr__security-item p {
  color: inherit;
}

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

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

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

.page-gdpr__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  margin-bottom: 30px;
}

.page-gdpr__contact-block .page-gdpr__link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-gdpr__contact-block .page-gdpr__link:hover {
  color: #1a7bb7;
}

.page-gdpr__dark-bg .page-gdpr__link {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-gdpr__dark-bg .page-gdpr__link:hover {
  color: #f0f0f0;
}

/* FAQ Section */
.page-gdpr__faq-section {
  padding: 40px 20px;
  text-align: center;
}

.page-gdpr__faq-container {
  max-width: 900px;
  margin: 30px auto;
}

.page-gdpr__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: left;
  color: #FFFFFF;
}

.page-gdpr__faq-item summary {
  list-style: none;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: #FFFFFF;
}

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

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

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

.page-gdpr__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #f0f0f0;
}

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

.page-gdpr__cta-section {
  padding: 50px 20px;
  text-align: center;
  background-color: #FFFFFF; /* Light background for CTA */
  color: #333333;
}

.page-gdpr__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
}

.page-gdpr__btn-primary:hover {
  background-color: #1a7bb7;
  border-color: #1a7bb7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-gdpr__image--right, .page-gdpr__image--left {
    float: none;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    font-size: 16px;
    line-height: 1.6;
  }

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

  .page-gdpr__hero-content {
    padding: 10px;
  }

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

  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

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

  .page-gdpr__content-area,
  .page-gdpr__section,
  .page-gdpr__faq-section,
  .page-gdpr__cta-section {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Mobile image responsiveness */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__hero-image,
  .page-gdpr__image--right,
  .page-gdpr__image--left,
  .page-gdpr__image--center {
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  /* Mobile button responsiveness */
  .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;
    margin-bottom: 10px;
  }

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

  /* Mobile FAQ styling */
  .page-gdpr__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }

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