.page-gdpr {
  color: #333333; /* Dark text for default white body background */
  padding-top: var(--header-offset, 120px);
}

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #003366;
  color: #ffffff;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
}

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

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

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

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

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

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

.page-gdpr__button--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

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

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

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

.page-gdpr__content-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

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

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

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

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

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

.page-gdpr__grid-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__grid-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-gdpr__item-description {
  font-size: 1em;
  color: #666666;
  line-height: 1.5;
}

.page-gdpr__note {
  text-align: center;
  margin-top: 40px;
  font-size: 1em;
  color: #555555;
}

.page-gdpr__link {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.page-gdpr__security-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-gdpr__security-item {
  background-color: #f0f8ff;
  border-left: 5px solid #003366;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__security-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-gdpr__contact-info {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #333333;
}

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

.page-gdpr__related-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.page-gdpr__related-item a {
  display: inline-block;
  background-color: #003366;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.page-gdpr__related-item a:hover {
  background-color: #FFCC00;
  color: #003366;
}

.page-gdpr__paragraph {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555555;
  text-align: justify;
}

/* Ensure images in content area are not too small for mobile */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }

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

  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

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

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

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

  .page-gdpr__content-section img,
  .page-gdpr__grid-image,
  .page-gdpr__security-icon {
    max-width: 100%;
    height: auto; /* Ensure images scale down */
  }

  .page-gdpr {
    overflow-x: hidden;
  }
}

/* Global image size constraint for content area */
.page-gdpr__content-section img {
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__security-icon {
  min-width: 80px; /* Specific override for icon-like elements, if larger than 200px by default */
  min-height: 80px; /* Specific override for icon-like elements, if larger than 200px by default */
}

/* The above min-width/height rules for .page-gdpr__content-section img and .page-gdpr__security-icon will ensure no image within the content area is smaller than 200px, except for specific icon-like elements where 80px might be a design choice, but still not smaller than 200px for general content images. */