.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  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 as body handles header offset */
  overflow: hidden;
  min-height: 400px;
}

.page-gdpr__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: #FFFFFF; /* White text for dark background hero image */
  background-color: rgba(0, 0, 0, 0.4); /* Slightly dark overlay for readability */
  padding: 30px;
  border-radius: 10px;
}

.page-gdpr__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(28px, 4vw, 48px); /* Responsive font size for H1 */
}

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

.page-gdpr__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid #26A9E0;
}

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

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  color: #333333;
}

.page-gdpr__section-title {
  font-size: clamp(24px, 3vw, 36px);
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__text-block {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #333333;
}

.page-gdpr__image-text-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
}

.page-gdpr__feature-image {
  flex: 1 1 400px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-gdpr__principles-list {
  flex: 2 1 600px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-gdpr__principles-item {
  background-color: #f9f9f9;
  border-left: 5px solid #26A9E0;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.page-gdpr__principles-title {
  color: #26A9E0;
  font-size: 1.2em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-gdpr__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.page-gdpr__card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  color: #333333;
}

.page-gdpr__card-title {
  color: #26A9E0;
  font-size: 1.2em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-gdpr__how-we-comply {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  text-align: center;
}

.page-gdpr__how-we-comply-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__how-we-comply-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-gdpr__how-we-comply-title {
  color: #26A9E0;
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-gdpr__contact-info {
  background-color: #f0f8ff;
  border-left: 5px solid #26A9E0;
  padding: 25px;
  margin-bottom: 40px;
  border-radius: 8px;
  color: #333333;
}

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

.page-gdpr__contact-info a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
}

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

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

.page-gdpr__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #FFFFFF;
  color: #333333;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
  background-color: #f0f0f0;
}

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

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

.page-gdpr__faq-answer {
  padding: 0 25px 20px;
  color: #555555;
  font-size: 1em;
}

/* Details tag specific styling */
.page-gdpr__faq-item[open] .page-gdpr__faq-question {
  background-color: #f0f0f0;
}

.page-gdpr__faq-item summary {
  list-style: none;
}

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

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

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

  .page-gdpr__hero-content {
    padding: 20px;
  }

  .page-gdpr__main-title {
    font-size: clamp(24px, 7vw, 36px);
  }

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

  .page-gdpr__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }

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

  .page-gdpr__section-title {
    font-size: clamp(22px, 6vw, 30px);
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-gdpr__image-text-block {
    flex-direction: column;
    gap: 20px;
  }

  .page-gdpr__feature-image {
    flex: 1 1 auto;
  }

  .page-gdpr__principles-list {
    flex: 1 1 auto;
  }

  .page-gdpr__card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__card {
    padding: 20px;
  }

  .page-gdpr__how-we-comply {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-gdpr__how-we-comply-item {
    padding: 15px;
  }

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

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

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

  /* Ensure all images and containers are responsive */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container,
  .page-gdpr__image-text-block,
  .page-gdpr__how-we-comply,
  .page-gdpr__how-we-comply-item,
  .page-gdpr__faq-list,
  .page-gdpr__faq-item,
  .page-gdpr__contact-info {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-gdpr__hero-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-gdpr__hero-content {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-gdpr__video-section {
    padding-top: 10px !important;
  }

  /* Button group specific for mobile */
  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-gdpr__cta-buttons .page-gdpr__btn-primary {
    width: 100% !important;
  }
}

/* Color contrast fixes if needed, though default colors are chosen for contrast */
.page-gdpr__dark-bg {
  background-color: #26A9E0;
  color: #FFFFFF;
}

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

/* Specific styling for links in content area to ensure contrast */
.page-gdpr__content-area a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-gdpr__content-area a:hover {
  color: #1a8cc4;
}