.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #f8f8f8; /* Light background for the page */
}

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

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

/* Hero Section */
.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small decorative top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
}

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

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

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1; /* Ensure content is above image if any overlap */
}

.page-gdpr__main-title {
  font-size: clamp(2em, 3.5vw, 2.8em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff; /* White text for dark hero background */
}

.page-gdpr__description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  margin-bottom: 30px;
  color: #ffffff;
}

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure button fits on mobile */
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

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

.page-gdpr__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0; /* Main brand color */
  border: 2px solid #26A9E0;
}

.page-gdpr__btn-secondary:hover {
  background-color: #e0e0e0;
  color: #1f8ec4;
  border-color: #1f8ec4;
}

/* General Section Styling */
.page-gdpr__section {
  padding: 60px 20px;
  border-bottom: 1px solid #e0e0e0;
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

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

.page-gdpr__section-title {
  font-size: clamp(1.8em, 2.8vw, 2.5em);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: #26A9E0; /* Brand color for section titles */
}

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

.page-gdpr__sub-title {
  font-size: clamp(1.3em, 2vw, 1.8em);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #26A9E0; /* Brand color for sub-titles */
}

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

.page-gdpr__text-block {
  margin-bottom: 15px;
  font-size: clamp(0.95em, 1.2vw, 1.1em);
}

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

/* Lists */
.page-gdpr__rights-list, .page-gdpr__data-list, .page-gdpr__purpose-list, .page-gdpr__legal-basis-list, .page-gdpr__security-list, .page-gdpr__sharing-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr__rights-item, .page-gdpr__data-item, .page-gdpr__purpose-item, .page-gdpr__legal-basis-item, .page-gdpr__security-item, .page-gdpr__sharing-item {
  background-color: #f0f0f0;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-gdpr__dark-bg .page-gdpr__rights-item, .page-gdpr__dark-bg .page-gdpr__data-item, .page-gdpr__dark-bg .page-gdpr__purpose-item, .page-gdpr__dark-bg .page-gdpr__legal-basis-item, .page-gdpr__dark-bg .page-gdpr__security-item, .page-gdpr__dark-bg .page-gdpr__sharing-item {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.page-gdpr__rights-item p, .page-gdpr__data-item p, .page-gdpr__purpose-item p, .page-gdpr__legal-basis-item p, .page-gdpr__security-item p, .page-gdpr__sharing-item p {
  margin-bottom: 0;
}

/* Contact Section */
.page-gdpr__contact-section {
  text-align: center;
}

.page-gdpr__contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.page-gdpr__contact-details {
  text-align: left;
  max-width: 500px;
}

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

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

.page-gdpr__faq-list {
  max-width: 800px;
  margin: 30px auto;
  text-align: left;
}

.page-gdpr__faq-item {
  background-color: #f0f0f0;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.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: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(1em, 1.3vw, 1.15em);
  color: #333333;
  position: relative;
}

.page-gdpr__faq-question:hover {
  background-color: #e6e6e6;
  border-radius: 8px;
}

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

.page-gdpr__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: clamp(0.9em, 1.1vw, 1em);
  color: #555555;
}

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

.page-gdpr__text-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-gdpr__text-link:hover {
  color: #1f8ec4;
}

/* Call to Action Section */
.page-gdpr__call-to-action {
  text-align: center;
  padding: 80px 20px;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-gdpr__contact-info {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }

  .page-gdpr__contact-details {
    text-align: left;
  }
}

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

  .page-gdpr__description {
    font-size: 1em !important;
  }

  .page-gdpr__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

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

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

  .page-gdpr__cta-button {
    width: 100% !important;
    padding: 12px 15px !important;
    font-size: 1em !important;
  }

  .page-gdpr__image-content,
  .page-gdpr__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-gdpr__hero-image-wrapper,
  .page-gdpr__section,
  .page-gdpr__content-area,
  .page-gdpr__contact-section,
  .page-gdpr__faq-section,
  .page-gdpr__call-to-action,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

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

  .page-gdpr__section-title {
    font-size: 1.5em !important;
  }

  .page-gdpr__sub-title {
    font-size: 1.2em !important;
  }

  .page-gdpr__text-block, .page-gdpr p, .page-gdpr li {
    font-size: 1em !important;
  }
}