/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default dark text for light body background */
  background-color: #ffffff; /* Assuming body background is light */
}

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

.page-gdpr__hero-image-container {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

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

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

.page-gdpr__main-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  color: #26A9E0;
  margin-bottom: 20px;
  letter-spacing: -0.05em;
}

.page-gdpr__description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555555;
}

.page-gdpr__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

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

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

.page-gdpr__heading {
  font-size: 2.2em;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__sub-heading {
  font-size: 1.5em;
  font-weight: 600;
  color: #333333;
  margin-bottom: 15px;
}

.page-gdpr__paragraph {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444444;
}

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

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

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

.page-gdpr__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-gdpr__dark-section .page-gdpr__heading,
.page-gdpr__dark-section .page-gdpr__sub-heading {
  color: #ffffff;
}

.page-gdpr__dark-section .page-gdpr__paragraph {
  color: #f0f0f0;
}

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

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

.page-gdpr__card-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-gdpr__card-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
}

.page-gdpr__btn-secondary {
  display: inline-block;
  background-color: #ffffff;
  color: #26A9E0;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #26A9E0;
  transition: all 0.3s ease;
  margin-top: 30px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-gdpr__implementation-section {
  background-color: #f0f8ff;
}

.page-gdpr__feature-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.page-gdpr__feature-block--reverse {
  flex-direction: row-reverse;
}

.page-gdpr__feature-icon {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
}

.page-gdpr__feature-content {
  flex-grow: 1;
}

.page-gdpr__contact-section {
  text-align: center;
  background-color: #f9f9f9;
  border-top: 1px solid #e0e0e0;
}

.page-gdpr__contact-info {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.page-gdpr__contact-item {
  font-size: 1.1em;
  color: #333333;
}

.page-gdpr__related-policies-section {
  background-color: #e6f7ff;
}

.page-gdpr__policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  list-style: none;
  padding: 0;
}

.page-gdpr__policy-item a {
  display: block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__policy-item a:hover {
  background-color: #1a8cc7;
}

.page-gdpr__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

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

.page-gdpr__container,
.page-gdpr__hero-section,
.page-gdpr__feature-block,
.page-gdpr__card {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Responsive styles for mobile */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-gdpr__hero-image {
    object-fit: contain; /* Ensure full image is visible, no cropping */
    aspect-ratio: unset;
    max-height: none;
  }

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

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

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

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

  .page-gdpr__heading {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-gdpr__sub-heading {
    font-size: 1.3em;
  }

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

  .page-gdpr__cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .page-gdpr__card {
    padding: 20px;
  }

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

  .page-gdpr__feature-block,
  .page-gdpr__feature-block--reverse {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 15px;
  }

  .page-gdpr__feature-icon {
    width: 150px;
    height: 150px;
  }

  .page-gdpr__contact-info {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .page-gdpr__policy-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  /* General image and container rules for mobile */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__section,
  .page-gdpr__container,
  .page-gdpr__hero-section,
  .page-gdpr__feature-block,
  .page-gdpr__card,
  .page-gdpr__cta-buttons,
  .page-gdpr__button-group,
  .page-gdpr__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
  }
}