.page-gdpr {
  color: #333333; /* Dark text on light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #f0f0f0;
  padding: 0;
  text-align: center;
}

.page-gdpr__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

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

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

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-gdpr__button--primary {
  background-color: #FCBC45; /* Login color for primary actions */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-gdpr__button--primary:hover {
  background-color: #e0a53a;
  border-color: #e0a53a;
}

.page-gdpr__button--secondary {
  background-color: #FFFFFF; /* Register color for secondary actions */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-gdpr__button--secondary:hover {
  background-color: #f0f0f0;
}

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #eeeeee;
}

.page-gdpr__section--principles {
  background-color: #f9f9f9;
}

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

.page-gdpr__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.page-gdpr__section-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-gdpr__card {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__card-image {
  width: 100%;
  max-width: 400px; /* Max width to ensure it scales down */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

.page-gdpr__card-description {
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-gdpr__app-content {
  flex: 1;
}

.page-gdpr__app-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
}

.page-gdpr__app-description {
  color: #555555;
  margin-bottom: 30px;
}

.page-gdpr__app-image-wrapper {
  flex-shrink: 0;
}

.page-gdpr__app-image {
  width: 100%;
  max-width: 400px; /* Max width to ensure it scales down */
  height: auto;
  border-radius: 8px;
}

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

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

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

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

  .page-gdpr__contact-actions {
    flex-direction: column;
  }

  .page-gdpr__container--flex {
    flex-direction: column;
    text-align: center;
  }

  .page-gdpr__app-content {
    order: 2;
  }

  .page-gdpr__app-image-wrapper {
    order: 1;
    margin-bottom: 20px;
  }

  /* Ensure all content area images are responsive and not too small */
  .page-gdpr img:not(.shared-header img):not(.shared-footer img) {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size on mobile */
    min- /* Adjust as needed for aspect ratio */
    object-fit: cover;
  }

  /* Specific adjustments for hero image on mobile if needed */
  .page-gdpr__hero-image {
    min-height: 250px; /* Adjust hero image min-height for mobile */
  }
}

@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__button {
    padding: 10px 20px;
  }
}

/* Global rule for content area images to enforce minimum size */
.page-gdpr img:not(.shared-header img):not(.shared-footer img) {
  min-width: 200px;
  min- /* Adjusted to maintain a common aspect ratio, can be refined per image */
  object-fit: cover; /* Ensures images fill their space without distortion */
}

/* Specific override for hero image if it has different min-height requirement */
.page-gdpr__hero-image {
  min-height: 300px; /* Hero image typically larger */
}