.page-gdpr {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000;
}

.page-gdpr__hero-container {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-gdpr__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

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

.page-gdpr__hero-description {
  font-size: 1.2em;
  color: #F0F0F0;
  max-width: 800px;
  margin-bottom: 30px;
}

.page-gdpr__hero-actions {
  display: flex;
  gap: 20px;
}

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-gdpr__button--register:hover {
  background-color: #E0E0E0;
  transform: translateY(-2px);
}

.page-gdpr__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-gdpr__button--login:hover {
  background-color: #E6A83E;
  transform: translateY(-2px);
}

.page-gdpr__content-area {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-gdpr__article {
  padding: 30px 0;
}

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

.page-gdpr__section-heading {
  font-size: 2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-gdpr__sub-heading {
  font-size: 1.5em;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__call-to-action {
  background-color: #000000;
  padding: 50px 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
}

.page-gdpr__call-to-action-title {
  color: #FFFFFF;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.page-gdpr__call-to-action-description {
  color: #F0F0F0;
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__call-to-action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

@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: 15px;
  }

  .page-gdpr__button {
    width: 100%;
    padding: 12px 20px;
  }

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

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

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

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

  .page-gdpr__content-area {
    padding: 0 15px;
  }

  .page-gdpr__call-to-action-title {
    font-size: 2em;
  }

  .page-gdpr__call-to-action-description {
    font-size: 1em;
  }

  .page-gdpr__call-to-action-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__content-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

/* Ensure content images are responsive and do not overflow */
@media (max-width: 768px) {
  .page-gdpr__content-image {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-gdpr {
    overflow-x: hidden;
  }
}