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

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #0A192F; /* Dark blue background */
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
}

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

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  line-height: 1.2;
}

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

.page-gdpr__hero-image-wrapper {
  width: 100%;
  max-width: 100%; /* Ensure it doesn't overflow */
  overflow: hidden;
}

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

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #0A192F; /* Dark blue for titles */
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-gdpr__text {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

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

.page-gdpr__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text */
}

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

.page-gdpr__button--secondary {
  background-color: #0A192F; /* Dark blue button */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-gdpr__button--secondary:hover {
  background-color: #1a3250;
  transform: translateY(-2px);
}

.page-gdpr__commitment {
  background-color: #f9f9f9;
}

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

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

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gdpr__grid-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

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

.page-gdpr__list-item {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  line-height: 1.6;
}

.page-gdpr__list-item strong {
  color: #0A192F;
}

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

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller mobile header */
    padding: 40px 15px;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__text, .page-gdpr__list-item {
    font-size: 0.95em;
  }
  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
  /* Ensure content images are responsive and don't overflow */
  .page-gdpr__grid-image {
    max-width: 100%; /* Must be 100% on mobile */
    height: auto;
  }
  .page-gdpr__hero-image {
    max-width: 100%; /* Must be 100% on mobile */
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__button {
    width: 100%;
    box-sizing: border-box;
  }
}