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

.page-gdpr__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, header offset handled by body in shared.css */
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
}

.page-gdpr__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-gdpr__hero-image-wrapper {
  margin-bottom: 30px;
}

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

.page-gdpr__hero-content {
  text-align: center;
}

.page-gdpr__main-title {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-gdpr__intro-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #f0f0f0;
}

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

.page-gdpr__section-intro {
  background-color: #F5F7FA;
  color: #333333;
}

.page-gdpr__dark-bg {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
}

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

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

.page-gdpr__section-title {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

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

.page-gdpr__light-bg .page-gdpr__section-title {
  color: #333333;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-gdpr__list-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-gdpr__dark-bg .page-gdpr__list-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.page-gdpr__list-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 10px;
  color: #E53935;
}

.page-gdpr__dark-bg .page-gdpr__list-title {
  color: #FF5A4F;
}

.page-gdpr__list-item p {
  margin-bottom: 0;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 40px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__image--center {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.page-gdpr__link {
  color: #E53935;
  text-decoration: underline;
  font-weight: 600;
}

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

.page-gdpr__link:hover {
  color: #FF5A4F;
}

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

/* FAQ Styles */
.page-gdpr__faq-list {
  margin-top: 40px;
}

details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
details.page-gdpr__faq-item summary.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-gdpr__faq-item summary.page-gdpr__faq-question::-webkit-details-marker {
  display: none;
}
details.page-gdpr__faq-item summary.page-gdpr__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
}
.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #ffffff;
}
.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #f0f0f0;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-gdpr__faq-item .page-gdpr__faq-answer {
  padding: 0 20px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 5px 5px;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

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

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

  .page-gdpr__list-item {
    padding: 20px;
  }

  .page-gdpr__list-title {
    font-size: 1.1em;
  }

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

  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0px;
    padding-right: 0px;
  }
  
  details.page-gdpr__faq-item summary.page-gdpr__faq-question { padding: 15px; }
  .page-gdpr__faq-qtext { font-size: 15px; }
  .page-gdpr__faq-toggle { font-size: 20px; width: 24px; text-align: center; }
  details.page-gdpr__faq-item .page-gdpr__faq-answer { padding: 0 15px 15px; }
}

/* Ensure images are not filtered */
.page-gdpr img {
  filter: none;
}

/* Content area image size minimum */
.page-gdpr__section img, .page-gdpr__list-item img {
  min-width: 200px;
  min-height: 200px;
}

/* H1 font-size clamp for responsiveness */
.page-gdpr__main-title {
  font-size: clamp(1.8em, 5vw, 2.5em);
}