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

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px);
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  gap: 30px;
}

.page-gdpr__hero-content {
  max-width: 900px;
}

.page-gdpr__main-title {
  font-size: 2.8em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-gdpr__hero-image {
  width: 100%;
  max-width: 1200px;
}

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

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

.page-gdpr__section-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

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

.page-gdpr__keyword {
  font-weight: bold;
  color: #000000;
}

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

.page-gdpr__rights-list,
.page-gdpr__security-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-gdpr__list-item {
  background-color: #f9f9f9;
  border-left: 5px solid #000000;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.05em;
  color: #333333;
}

.page-gdpr__list-item strong {
  color: #000000;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px;
  font-size: 1.0em;
  text-align: center;
}

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

.page-gdpr__button--register:hover {
  background-color: #e0a53b;
}

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

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

.page-gdpr__button--secondary {
  background-color: #f0f0f0;
  color: #000000;
  border: 1px solid #ddd;
}

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

.page-gdpr__button--cta {
  font-size: 1.1em;
  padding: 15px 30px;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    flex-direction: column;
    padding: 40px 15px;
  }

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

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

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

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

  .page-gdpr__button {
    width: calc(100% - 20px);
    margin: 10px 0;
  }

  /* Ensure images do not overflow */
  .page-gdpr__hero-image img,
  .page-gdpr__image {
    max-width: 100%;
    height: auto;
  }
}