.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #F4F7FB; /* Body background from shared.css */
}

.page-gdpr__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 40px 0; /* Small top padding, bottom for content */
  background: linear-gradient(180deg, #F4F7FB 0%, #E0E7F0 100%);
  border-bottom: 1px solid #D6E2FF;
}

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.2);
}

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

.page-gdpr__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  color: #1F2D3D;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-gdpr__description {
  font-size: 1.1em;
  color: #1F2D3D;
  margin-bottom: 30px;
}

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

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

.page-gdpr__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-gdpr__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-gdpr__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__btn-secondary:hover {
  background: #2F6BFF;
  color: #ffffff;
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.3);
}

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

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__introduction .page-gdpr__section-title,
.page-gdpr__rights .page-gdpr__section-title,
.page-gdpr__contact .page-gdpr__section-title {
  color: #1F2D3D;
}

.page-gdpr__principles .page-gdpr__section-title,
.page-gdpr__measures .page-gdpr__section-title,
.page-gdpr__commitment .page-gdpr__section-title {
  color: #ffffff;
}

.page-gdpr__text-white {
  color: #ffffff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-gdpr__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-gdpr__card {
  background: #ffffff; /* Card BG */
  color: #1F2D3D; /* Text Main */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-gdpr__card-title {
  font-size: 1.6em;
  color: #2F6BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  display: block;
}

.page-gdpr__dark-bg {
  background-color: #2F6BFF;
  color: #ffffff;
}

.page-gdpr__light-bg {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-gdpr__grid-3-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__principle-card {
  background: rgba(255, 255, 255, 0.15); /* Slightly transparent white on dark bg */
  border: 1px solid #6FA3FF; /* Border */
  border-radius: 10px;
  padding: 25px;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-gdpr__principle-title {
  font-size: 1.4em;
  color: #A5C4FF; /* Glow */
  margin-bottom: 10px;
  font-weight: bold;
}

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

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

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #2F6BFF;
  cursor: pointer;
  background-color: #F4F7FB;
  border-bottom: 1px solid transparent; /* Placeholder for active state */
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  border-bottom-color: #D6E2FF;
}

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

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

.page-gdpr__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #1F2D3D;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-answer {
  max-height: 500px; /* Arbitrary large value for smooth transition */
  padding-top: 15px;
}

/* For div-based FAQ fallback */
.page-gdpr__faq-item.active .page-gdpr__faq-question {
  border-bottom-color: #D6E2FF;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
  max-height: 2000px !important; /* Larger value for div-based */
  padding-top: 15px;
}

.page-gdpr__measures .page-gdpr__content-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-gdpr__measure-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  color: #1F2D3D;
}

.page-gdpr__measure-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto; /* Center images */
  margin-right: auto;
}

.page-gdpr__measure-title {
  font-size: 1.5em;
  color: #2F6BFF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-gdpr__contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-gdpr__contact-card {
  background: #ffffff;
  border: 1px solid #D6E2FF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  flex: 1;
  min-width: 280px;
  max-width: 45%;
}

.page-gdpr__contact-title {
  font-size: 1.4em;
  color: #2F6BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__contact-link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: block;
  margin-top: 10px;
}

.page-gdpr__contact-link:hover {
  color: #6FA3FF;
  text-decoration: underline;
}

.page-gdpr__cta-buttons--center {
  margin-top: 50px;
  margin-bottom: 20px;
}

.page-gdpr__commitment-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid #6FA3FF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.page-gdpr__commitment-title {
  font-size: 1.5em;
  color: #A5C4FF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-gdpr__text-link {
  text-decoration: underline;
}

.page-gdpr__text-link:hover {
  color: #6FA3FF;
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-gdpr {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-gdpr__hero-section {
    padding: 10px 0 30px 0;
  }

  .page-gdpr__hero-image {
    object-fit: contain !important; /* Ensure image is not cropped */
    aspect-ratio: unset !important; /* Allow natural aspect ratio */
    max-height: none !important;
    margin-bottom: 20px;
  }

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

  .page-gdpr__description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

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

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

  .page-gdpr__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-gdpr__content-grid,
  .page-gdpr__grid-3-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__card,
  .page-gdpr__principle-card,
  .page-gdpr__measure-card,
  .page-gdpr__commitment-card {
    padding: 25px;
  }

  .page-gdpr__card-title,
  .page-gdpr__principle-title,
  .page-gdpr__measure-title,
  .page-gdpr__contact-title,
  .page-gdpr__commitment-title {
    font-size: 1.3em;
  }

  .page-gdpr__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

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

  .page-gdpr__contact-info {
    flex-direction: column;
    gap: 20px;
  }

  .page-gdpr__contact-card {
    max-width: 100%;
    width: 100%;
  }

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

  /* Ensure all containers with images also adapt */
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__cta-buttons,
  .page-gdpr__contact-info {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Specific overrides for mobile padding if needed, but general container should handle */
  .page-gdpr__hero-content {
    padding: 0 15px;
  }
  .page-gdpr__text-white {
    padding: 0 15px;
  }
}