.page-gdpr {
  color: #ffffff; /* Text color for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-gdpr__hero-section {
  background-color: #1A1A2E; /* Primary color background */
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-gdpr__hero-title {
  font-size: 3.5em;
  color: #E94560; /* Secondary color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

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

.page-gdpr__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.page-gdpr__hero-cta-button {
  display: inline-block;
  background-color: #E94560; /* Secondary color for CTA */
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
}

.page-gdpr__hero-cta-button:hover {
  background-color: #ff6680;
  transform: translateY(-3px);
}

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

.page-gdpr__article {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for subtle contrast */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__article-heading {
  color: #E94560;
  font-size: 2.2em;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(233, 69, 96, 0.3);
  padding-bottom: 10px;
}

.page-gdpr__article-heading:first-of-type {
  margin-top: 0;
}

.page-gdpr__article-paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0;
}

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

.page-gdpr__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-gdpr__list-item::before {
  content: '✔';
  color: #E94560;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.page-gdpr__image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 30px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.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__contact-button {
  display: inline-block;
  background-color: #1A1A2E;
  color: #E94560;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  border: 2px solid #E94560;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
}

.page-gdpr__contact-button:hover {
  background-color: #E94560;
  color: #1A1A2E;
}

.page-gdpr__cta-buttons {
  text-align: center;
  margin-top: 50px;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 15px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__cta-button--primary {
  background-color: #E94560;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.page-gdpr__cta-button--primary:hover {
  background-color: #ff6680;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.6);
}

.page-gdpr__cta-button--secondary {
  background-color: transparent;
  color: #E94560;
  border: 2px solid #E94560;
  box-shadow: 0 4px 15px rgba(26, 26, 46, 0.4);
}

.page-gdpr__cta-button--secondary:hover {
  background-color: #1A1A2E;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 26, 46, 0.6);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__hero-description {
    font-size: 1.1em;
  }
  .page-gdpr__article-heading {
    font-size: 1.8em;
  }
  .page-gdpr__article-paragraph, .page-gdpr__list-item {
    font-size: 1em;
  }
  .page-gdpr__image--right, .page-gdpr__image--left {
    float: none;
    margin: 30px auto;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__hero-cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-gdpr__content-area {
    padding: 40px 15px;
  }
  .page-gdpr__article {
    padding: 25px;
  }
  .page-gdpr__article-heading {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-gdpr__article-paragraph, .page-gdpr__list-item {
    font-size: 0.95em;
  }
  .page-gdpr__cta-button {
    display: block;
    margin: 15px auto;
    max-width: 280px;
  }
  .page-gdpr__image {
    max-width: 100%;
    height: auto; /* ensure image scales down */
  }
  .page-gdpr img {
    max-width: 100%;
    height: auto; /* ensure images in content area are responsive */
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-description {
    font-size: 0.9em;
  }
  .page-gdpr__article-heading {
    font-size: 1.4em;
  }
  .page-gdpr__article-paragraph, .page-gdpr__list-item {
    font-size: 0.9em;
  }
  .page-gdpr__list-item {
    padding-left: 25px;
  }
  .page-gdpr__list-item::before {
    font-size: 1em;
  }
}