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

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  background-color: #0A2463; /* Primary brand color */
  color: #ffffff;
  text-align: center;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

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

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

.page-gdpr__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #E0B342; /* Secondary brand color for emphasis */
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 1;
}

.page-gdpr__button--primary {
  background-color: #E0B342; /* Secondary brand color */
  color: #0A2463; /* Primary brand color */
}

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

.page-gdpr__button--secondary {
  background-color: #0A2463;
  color: #E0B342;
  border: 2px solid #E0B342;
}

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

.page-gdpr__content-section {
  padding: 60px 20px;
}

.page-gdpr__content-section--intro {
  background-color: #f9f9f9;
}

.page-gdpr__content-section--rights {
  background-color: #ffffff;
}

.page-gdpr__content-section--protection {
  background-color: #f0f4f8;
}

.page-gdpr__content-section--transparency {
  background-color: #ffffff;
}

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

.page-gdpr__container--center {
  text-align: center;
}

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

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555555;
  text-align: justify;
}

.page-gdpr__paragraph a {
  color: #0A2463;
  text-decoration: underline;
}

.page-gdpr__paragraph a:hover {
  color: #E0B342;
}

.page-gdpr__paragraph--note {
  text-align: center;
  font-style: italic;
  margin-top: 40px;
  border-top: 1px solid #eeeeee;
  padding-top: 20px;
}

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

.page-gdpr__card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-gdpr__card-description {
  font-size: 1em;
  color: #666666;
}

.page-gdpr__flex-container {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

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

.page-gdpr__image-right {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__contact-section {
  background-color: #0A2463;
  color: #ffffff;
  padding: 80px 20px;
}

.page-gdpr__contact-section .page-gdpr__section-title {
  color: #E0B342;
}

.page-gdpr__contact-section .page-gdpr__paragraph {
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-gdpr__flex-container {
    flex-direction: column;
  }

  .page-gdpr__image-right {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-container {
    padding: 40px 15px;
  }

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

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

  .page-gdpr__button {
    padding: 10px 20px;
  }

  .page-gdpr__content-section {
    padding: 40px 15px;
  }

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

  .page-gdpr__paragraph {
    font-size: 0.95em;
  }

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

  .page-gdpr__card-image, .page-gdpr__image-right {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and do not overflow */
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
  }

  .page-gdpr__contact-section {
    padding: 60px 15px;
  }
}

@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.5em;
  }

  .page-gdpr__paragraph {
    font-size: 0.9em;
  }

  .page-gdpr__button {
    width: 100%;
    box-sizing: border-box;
  }
}