.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background #1a1a2e is dark, so text should be light */
  background-color: transparent; /* Rely on body background from shared.css */
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: rgba(38, 169, 224, 0.1); /* Slight brand color tint */
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative; /* Ensure content is above any background layers, but not overlapping image */
  z-index: 2;
  color: #ffffff;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  /* No fixed large font-size, rely on natural flow and clamp if needed */
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-gdpr__description {
  font-size: 1.15rem;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for content contrast */
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  color: #ffffff; /* Light text for dark body background */
}

.page-gdpr__article {
  padding: 20px;
}

.page-gdpr__section-title {
  font-size: 2rem;
  color: #26A9E0; /* Brand color for titles */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(38, 169, 224, 0.3);
  padding-bottom: 10px;
}

.page-gdpr__section-title:first-of-type {
  margin-top: 0;
}

.page-gdpr p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

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

.page-gdpr__list li {
  margin-bottom: 8px;
  color: #f0f0f0;
}

.page-gdpr__list li strong {
  color: #26A9E0;
}

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

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

.page-gdpr__link:hover {
  color: #3cb4f0;
  text-decoration: none;
}

.page-gdpr__contact-info {
  margin-top: 20px;
  padding: 20px;
  background-color: rgba(38, 169, 224, 0.1);
  border-left: 5px solid #26A9E0;
  border-radius: 4px;
  color: #f0f0f0;
}

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

.page-gdpr__contact-info strong {
  color: #ffffff;
}

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

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

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

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

.page-gdpr__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* FAQ Styling */
.page-gdpr__faq-list {
  margin-top: 30px;
}

.page-gdpr__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #f0f0f0;
}

.page-gdpr__faq-item[open] {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #ffffff;
  background-color: rgba(38, 169, 224, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none; /* Hide default marker */
}

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

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

.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);
  color: #ffffff;
}

.page-gdpr__faq-answer {
  padding: 15px 25px 20px 25px;
  color: #f0f0f0;
}

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

.page-gdpr__bottom-cta {
  background-color: #26A9E0; /* Use brand color for strong CTA */
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
  margin-top: 50px;
  box-sizing: border-box;
}

.page-gdpr__bottom-cta .page-gdpr__container {
  max-width: 900px;
  margin: 0 auto;
}

.page-gdpr__cta-title {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-gdpr__cta-description {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-gdpr__bottom-cta .page-gdpr__cta-buttons .page-gdpr__btn-primary {
  background-color: #EA7C07; /* Login color for primary CTA */
  border-color: #EA7C07;
}

.page-gdpr__bottom-cta .page-gdpr__cta-buttons .page-gdpr__btn-primary:hover {
  background-color: #c96a06;
  border-color: #c96a06;
}

.page-gdpr__bottom-cta .page-gdpr__cta-buttons .page-gdpr__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border-color: #ffffff;
}

.page-gdpr__bottom-cta .page-gdpr__cta-buttons .page-gdpr__btn-secondary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-section {
    padding: 40px 20px;
  }

  .page-gdpr__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-gdpr__description {
    font-size: 1rem;
  }

  .page-gdpr__section-title {
    font-size: 1.8rem;
  }

  .page-gdpr__cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important; /* Ensure small top padding */
  }

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

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

  .page-gdpr__content-area,
  .page-gdpr__bottom-cta {
    padding: 30px 15px;
  }

  .page-gdpr__article {
    padding: 15px;
  }

  .page-gdpr__section-title {
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-gdpr p,
  .page-gdpr__list li {
    font-size: 0.95rem;
  }

  .page-gdpr__contact-info {
    padding: 15px;
  }

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

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    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;
  }

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

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

  .page-gdpr__cta-title {
    font-size: 1.8rem;
  }

  .page-gdpr__cta-description {
    font-size: 1rem;
  }

  /* Ensure all containers are responsive */
  .page-gdpr__section,
  .page-gdpr__container,
  .page-gdpr__article,
  .page-gdpr__faq-list,
  .page-gdpr__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* padding-left: 15px; padding-right: 15px; */ /* Handled by parent .page-gdpr__content-area and .page-gdpr__bottom-cta */
  }
}