.page-gdpr {
  color: #333333; /* Dark text for light body background */
}

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background: linear-gradient(135deg, #007bff, #0056b3); /* Main brand color gradient */
  color: #ffffff;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffc107; /* Accent color for title */
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.9;
}

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

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1em;
}

.page-gdpr__button--primary {
  background-color: #ffc107;
  color: #007bff;
  border: 2px solid #ffc107;
}

.page-gdpr__button--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
}

.page-gdpr__button--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-gdpr__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-gdpr__button--link {
  color: #007bff;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  font-weight: normal;
}

.page-gdpr__button--link:hover {
  color: #0056b3;
}

.page-gdpr__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.7;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
}

.page-gdpr__text {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #444444;
}

.page-gdpr__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 40px auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image--centered {
  max-width: 800px;
}

.page-gdpr__list-container {
  background-color: #f9f9f9;
  border-left: 5px solid #007bff;
  padding: 25px;
  margin: 30px 0;
  border-radius: 8px;
}

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

.page-gdpr__list-item {
  font-size: 1.05em;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.page-gdpr__list-item::before {
  content: '✔';
  color: #ffc107;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-gdpr__list-item strong {
  color: #007bff;
}

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

.page-gdpr__card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-gdpr__card-text {
  font-size: 1em;
  color: #555555;
}

.page-gdpr__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.page-gdpr__feature-item {
  background-color: #f0f8ff;
  border-left: 4px solid #007bff;
  padding: 20px;
  border-radius: 8px;
}

.page-gdpr__feature-title {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-gdpr__feature-description {
  font-size: 0.95em;
  color: #555555;
}

.page-gdpr__contact-details {
  background-color: #fffbe6;
  border: 1px solid #ffc107;
  padding: 30px;
  margin: 40px 0;
  border-radius: 8px;
  text-align: center;
}

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

.page-gdpr__contact-item:last-child {
  margin-bottom: 0;
}

.page-gdpr__link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__link:hover {
  text-decoration: underline;
  color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.4em;
  }

  .page-gdpr__section-title {
    font-size: 2em;
  }

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

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }

  .page-gdpr__hero-description {
    font-size: 1em;
  }

  .page-gdpr__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__button {
    width: 100%;
    max-width: 280px; /* Constrain button width on mobile */
  }

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

  .page-gdpr__text, .page-gdpr__list-item, .page-gdpr__card-text, .page-gdpr__feature-description, .page-gdpr__contact-item {
    font-size: 0.95em;
  }

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

  .page-gdpr__image {
    max-width: 100%; /* Ensure images are responsive and do not overflow */
    height: auto;
  }

  /* Critical: Ensure all content images are responsive and do not cause horizontal scroll */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }

  .page-gdpr__hero-description {
    font-size: 0.9em;
  }

  .page-gdpr__section-title {
    font-size: 1.6em;
  }

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

  .page-gdpr__feature-title {
    font-size: 1.2em;
  }
}