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

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px);
  position: relative;
  background-color: #000000; /* Dark background for hero to contrast with text */
  color: #FFFFFF;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.page-gdpr__main-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
}

.page-gdpr__cta-button:hover {
  background-color: #e0a53b;
}

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-gdpr__commitment-section {
  text-align: center;
}

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

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

.page-gdpr__section-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-gdpr__principles-grid, .page-gdpr__rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-gdpr__principles-list, .page-gdpr__rights-list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-gdpr__principles-image-wrapper, .page-gdpr__rights-image-wrapper {
  text-align: center;
}

.page-gdpr__principles-image, .page-gdpr__rights-image, .page-gdpr__contact-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 800px; /* Ensure images are not styled smaller than 200px */
  height: 600px; /* Ensure images are not styled smaller than 200px */
}

.page-gdpr__secondary-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1em;
  margin-top: 20px;
}

.page-gdpr__secondary-button:hover {
  background-color: #333333;
}

.page-gdpr__contact-section {
  text-align: center;
  background-color: #F8F8F8;
}

.page-gdpr__contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

@media (max-width: 768px) {
  .page-gdpr__hero-content {
    padding: 60px 15px;
  }
  .page-gdpr__main-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__principles-grid, .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-gdpr__principles-image-wrapper, .page-gdpr__rights-image-wrapper {
    order: -1; /* Image first on mobile */
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-paragraph, .page-gdpr__list-item {
    font-size: 0.95em;
  }
  .page-gdpr__principles-image, .page-gdpr__rights-image, .page-gdpr__contact-image {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr {
    max-width: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-content {
    padding: 40px 10px;
  }
  .page-gdpr__main-title {
    font-size: 1.8em;
  }
  .page-gdpr__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 15px;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
}