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

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #f8f8f8;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.page-gdpr__hero-container {
  position: relative;
  width: 100%;
  max-width: 1400px; /* Limit container width */
  margin: 0 auto;
}

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

.page-gdpr__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  max-width: 80%;
}

.page-gdpr__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700; /* Golden primary color for title */
}

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

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

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1em;
}

.page-gdpr__btn--primary {
  background-color: #FFD700; /* Primary color */
  color: #1E90FF; /* Contrasting auxiliary color for text */
  border: 2px solid #FFD700;
}

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

.page-gdpr__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Primary color for text */
  border: 2px solid #FFD700;
}

.page-gdpr__btn--secondary:hover {
  background-color: #FFD700;
  color: #1E90FF;
  transform: translateY(-2px);
}

.page-gdpr__btn--tertiary {
  background-color: #1E90FF; /* Auxiliary color */
  color: #ffffff;
  border: 2px solid #1E90FF;
}

.page-gdpr__btn--tertiary:hover {
  background-color: #187bcd;
  transform: translateY(-2px);
}

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

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

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #1E90FF; /* Auxiliary color for section titles */
  text-align: center;
  margin-bottom: 30px;
}

.page-gdpr__text {
  font-size: 1.1em;
  color: #333333;
  text-align: justify;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image--left {
  order: -1; /* Place image before text on larger screens */
}

.page-gdpr__image--right {
  order: 1; /* Place image after text on larger screens */
}

.page-gdpr__what-is-gdpr .page-gdpr__container,
.page-gdpr__our-commitment .page-gdpr__container,
.page-gdpr__data-processing .page-gdpr__container {
  flex-direction: column; /* Default for mobile */
  align-items: center;
}

@media (min-width: 769px) {
  .page-gdpr__what-is-gdpr .page-gdpr__container,
  .page-gdpr__our-commitment .page-gdpr__container,
  .page-gdpr__data-processing .page-gdpr__container {
    flex-direction: row; /* For larger screens */
    justify-content: space-between;
    align-items: flex-start;
  }

  .page-gdpr__what-is-gdpr .page-gdpr__text,
  .page-gdpr__our-commitment .page-gdpr__text,
  .page-gdpr__data-processing .page-gdpr__text {
    flex: 1;
    padding: 0 20px;
  }

  .page-gdpr__image {
    flex: 0 0 45%; /* Image takes 45% width */
  }

  .page-gdpr__image--right {
    order: 2; /* Image on the right */
  }

  .page-gdpr__image--left {
    order: -1; /* Image on the left */
  }
}

.page-gdpr__your-rights {
  background-color: #f0f7ff; /* Light blue background for contrast */
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-gdpr__list-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FFD700; /* Primary color accent */
  font-size: 1.05em;
}

.page-gdpr__list-item strong {
  color: #1E90FF; /* Auxiliary color */
}

.page-gdpr__contact {
  text-align: center;
  background-color: #1E90FF; /* Auxiliary color background */
  color: #ffffff;
}

.page-gdpr__contact .page-gdpr__section-title {
  color: #FFD700; /* Primary color for title */
}

.page-gdpr__contact .page-gdpr__text {
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

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

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

  .page-gdpr__btn {
    width: 80%;
    margin: 0 auto;
  }

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

  .page-gdpr__container {
    padding: 0;
  }

  .page-gdpr__text {
    padding: 0 10px;
  }

  /* Mobile image constraint */
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
}