.page-gdpr {
  color: #FFFFFF; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #000000; /* Default dark background for the page content area */
}

.page-gdpr__hero-section {
  background-color: #000000; /* Main dark background for hero */
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 30px;
  border-radius: 8px;
  opacity: 0.8;
}

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

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

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

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 150px; /* Ensure buttons are not too small */
  text-align: center;
  font-size: 1.05em;
}

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

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

.page-gdpr__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-gdpr__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-gdpr__content-section {
  padding: 80px 20px;
  background-color: #0d0d0d; /* Slightly lighter dark background for content sections */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__content-section:nth-of-type(even) {
  background-color: #1a1a1a; /* Alternate dark background */
}

.page-gdpr__content-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-gdpr__content-title {
  font-size: 2.2em;
  color: #FCBC45;
  margin-bottom: 30px;
  text-align: center;
}

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

.page-gdpr__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__data-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #FCBC45;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 4px;
  color: #FFFFFF;
}

.page-gdpr__data-item strong {
  color: #FCBC45;
}

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

.page-gdpr__right-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-gdpr__right-card:hover {
  transform: translateY(-5px);
}

.page-gdpr__right-card-title {
  font-size: 1.5em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-gdpr__right-card-text {
  color: #E0E0E0;
  font-size: 0.95em;
}

.page-gdpr__contact-section {
  background-color: #000000; /* Darkest background for contact */
  padding: 80px 20px;
  text-align: center;
}

.page-gdpr__contact-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.page-gdpr__contact-text {
  font-size: 1.1em;
  color: #F0F0F0;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.4em;
  }
  .page-gdpr__content-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section,
  .page-gdpr__content-section,
  .page-gdpr__contact-section {
    padding: 40px 15px;
  }

  .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%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-gdpr__content-title {
    font-size: 1.8em;
  }

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

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

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

  .page-gdpr__content-title {
    font-size: 1.5em;
  }

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