.page-gdpr {
  color: #333333; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

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

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

.page-gdpr__hero-title {
  font-size: 3.2em;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

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

.page-gdpr__hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-gdpr__section {
  background-color: #ffffff;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #000000;
  margin-bottom: 25px;
  border-bottom: 3px solid #FCBC45;
  padding-bottom: 10px;
  display: inline-block;
}

.page-gdpr__section-text {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 20px;
}

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

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

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

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

.page-gdpr__cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-gdpr__button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  text-align: center;
  min-width: 200px;
}

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

.page-gdpr__button--primary:hover {
  background-color: #e0a53a;
  transform: translateY(-3px);
}

.page-gdpr__button--secondary {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Register color */
  border: 2px solid #000000;
}

.page-gdpr__button--secondary:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

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

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__section {
    padding: 30px 20px;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-gdpr__content-area, .page-gdpr__hero-section {
    padding: 40px 15px;
  }
  .page-gdpr img {
    max-width: 100%;
    height: auto;
  }
  .page-gdpr__hero-image, .page-gdpr__section-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@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__rights-item {
    font-size: 0.95em;
    padding: 12px 15px;
  }
}