.page-gdpr {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  background-color: #FFFFFF;
}

.page-gdpr__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
}

.page-gdpr__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  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: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

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

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

.page-gdpr__section--jiliasia-commitment {
  background-color: #ffffff;
}

.page-gdpr__section--rights {
  background-color: #f8f8f8;
}

.page-gdpr__section--exercise-rights {
  background-color: #ffffff;
}

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

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

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

.page-gdpr__sub-heading {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-gdpr__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

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

.page-gdpr__card {
  background-color: #FFFFFF;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 12px 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 16px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__card-text {
  color: #555555;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-gdpr__list-item {
  margin-bottom: 10px;
  color: #333333;
}

.page-gdpr__image {
  width: 800px;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
  display: block;
}

.page-gdpr__image--center {
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 20px;
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}

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

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

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

.page-gdpr__button--secondary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  margin-left: 15px;
}

.page-gdpr__button--secondary:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-gdpr__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  min-width: 250px;
}

.page-gdpr__section--cta {
  padding: 80px 20px;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-gdpr__section--cta .page-gdpr__heading {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-gdpr__section--cta .page-gdpr__text {
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }

  .page-gdpr__heading {
    font-size: 2em;
  }

  .page-gdpr__sub-heading {
    font-size: 1.6em;
  }

  .page-gdpr__image--right, .page-gdpr__image--left {
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }

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

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

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

  .page-gdpr__section {
    padding: 40px 15px;
  }

  .page-gdpr__heading {
    font-size: 1.8em;
  }

  .page-gdpr__sub-heading {
    font-size: 1.4em;
  }

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

  .page-gdpr__image {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .page-gdpr__button {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-gdpr__button--secondary {
    margin-left: 0;
  }

  .page-gdpr__section--cta .page-gdpr__button {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }

  .page-gdpr__heading {
    font-size: 1.5em;
  }

  .page-gdpr__sub-heading {
    font-size: 1.2em;
  }

  .page-gdpr__button--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}