.page-gdpr {
  color: #333333; /* Dark text for default light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(220, 53, 69, 0.05));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px;
}

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

.page-gdpr__hero-title {
  font-size: 2.8em;
  color: #007bff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-gdpr__hero-button,
.page-gdpr__cta-button {
  display: inline-block;
  background-color: #dc3545;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  min-width: 200px;
}

.page-gdpr__hero-button:hover,
.page-gdpr__cta-button:hover {
  background-color: #c82333;
}

.page-gdpr__hero-image {
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-gdpr__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-gdpr__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  border-bottom: 1px solid #eeeeee;
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

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

.page-gdpr__section-paragraph {
  font-size: 1em;
  color: #333333;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__paragraph-centered {
  text-align: center;
}

.page-gdpr__paragraph-centered a {
  color: #007bff;
  text-decoration: underline;
}

.page-gdpr__paragraph-centered a:hover {
  color: #0056b3;
}

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

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

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

.page-gdpr__right-card img {
  width: 100%; /* Ensure card images fill width */
  height: auto;
  max-width: 250px; /* Keep icon-like images contained */
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

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

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

.page-gdpr__data-security-section {
  background-color: #f9f9f9;
}

.page-gdpr__security-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-gdpr__security-text {
  flex: 1;
}

.page-gdpr__security-image {
  flex: 1;
  text-align: center;
}

.page-gdpr__security-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-gdpr__cta-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #007bff;
  color: #ffffff;
}

.page-gdpr__cta-section .page-gdpr__section-title {
  color: #ffffff;
  font-size: 2.5em;
}

.page-gdpr__cta-section .page-gdpr__section-paragraph {
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

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

  .page-gdpr__hero-section {
    flex-direction: column;
    padding-bottom: 40px;
  }

  .page-gdpr__hero-content {
    padding: 30px 15px;
  }

  .page-gdpr__hero-image {
    padding: 0 15px;
  }

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

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

  .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }

  .page-gdpr__security-content {
    flex-direction: column;
  }

  .page-gdpr__security-image {
    margin-top: 30px;
  }

  .page-gdpr__cta-section {
    padding: 60px 15px;
  }

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

  /* Ensure all content images in mobile are responsive and not too small */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min image size even in mobile */
    min-height: 200px; /* Enforce min image size even in mobile */
  }

  .page-gdpr__right-card img {
    max-width: 100%; /* Allow card images to scale */
  }
}

/* Ensure all content images meet the minimum size requirement */
.page-gdpr img {
  min-width: 200px;
  min-height: 200px;
}