.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: var(--secondary-color, #FFFFFF);
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small padding, body handles header offset */
  padding-bottom: 40px;
  background-color: #f8f9fa;
}

.page-gdpr__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  object-fit: cover; /* Cover for desktop */
  margin-bottom: 30px;
}

.page-gdpr__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

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

.page-gdpr__intro-text {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #555555;
}

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

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

.page-gdpr__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-gdpr__btn-secondary:hover {
  background-color: #e0f4ff;
  color: #1a7fb8;
  border-color: #1a7fb8;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #eeeeee;
}

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

.page-gdpr__section--intro,
.page-gdpr__section--data-processing,
.page-gdpr__section--contact,
.page-gdpr__section--conclusion {
  background-color: #FFFFFF;
}

.page-gdpr__section--rights {
  background-color: #f0f8ff; /* Light blue tint */
}

.page-gdpr__section--security {
  background-color: #e0f4ff; /* Slightly darker light blue tint */
}

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

.page-gdpr__section-title {
  font-size: 2.2rem;
  color: #26A9E0;
  margin-bottom: 35px;
  text-align: center;
  font-weight: 600;
}

.page-gdpr__subtitle {
  font-size: 1.5rem;
  color: #1a7fb8;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

.page-gdpr p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #444444;
}

.page-gdpr a {
  color: #26A9E0;
  text-decoration: none;
}

.page-gdpr a:hover {
  text-decoration: underline;
}

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

.page-gdpr__list-item {
  background-color: #ffffff;
  padding: 20px;
  border-left: 5px solid #26A9E0;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  border-radius: 5px;
}

.page-gdpr__list-title {
  font-size: 1.3rem;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin: 30px 0;
}

.page-gdpr__image--left {
  float: left;
  max-width: 45%;
  margin-right: 30px;
}

.page-gdpr__image--right {
  float: right;
  max-width: 45%;
  margin-left: 30px;
}

.page-gdpr__section--rights .page-gdpr__container::after,
.page-gdpr__section--security .page-gdpr__container::after {
  content: "";
  display: table;
  clear: both;
}

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

.page-gdpr__contact-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #444444;
}

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

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
  list-style: none; /* For details/summary */
}

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

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  border-bottom: 1px solid #e0e0e0;
}

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

.page-gdpr__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
  transform: rotate(45deg);
}

.page-gdpr__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #555555;
  background-color: #ffffff;
}

.page-gdpr__section--conclusion {
  text-align: center;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-gdpr__hero-image {
    max-height: 500px;
  }

  .page-gdpr__image--left,
  .page-gdpr__image--right {
    max-width: 100%;
    float: none;
    margin-left: 0;
    margin-right: 0;
  }
}

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

  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-gdpr__hero-image {
    object-fit: contain; /* Ensure full image visibility on mobile */
    max-height: none;
    aspect-ratio: unset;
  }

  .page-gdpr__hero-content {
    padding: 0 15px;
  }

  .page-gdpr__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-gdpr__intro-text {
    font-size: 1rem;
    margin-bottom: 20px;
  }

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

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 15px;
    font-size: 1rem;
  }

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

  .page-gdpr__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .page-gdpr__subtitle {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-gdpr p,
  .page-gdpr__list-item p,
  .page-gdpr__contact-list li,
  .page-gdpr__faq-answer {
    font-size: 0.95rem;
  }

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

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

  .page-gdpr__image {
    margin: 20px 0;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

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

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

  .page-gdpr__faq-toggle {
    font-size: 1.3rem;
  }
}