.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E5DFD3; /* Light text for dark background */
  background-color: #1A202C;
}

.page-gdpr__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%);
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E5DFD3;
}

.page-gdpr__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-gdpr__section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

.page-gdpr__section-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #FFD700;
  margin: 10px auto 0;
}

.page-gdpr__paragraph {
  font-size: 1em;
  margin-bottom: 15px;
  color: #E5DFD3;
  text-align: justify;
}

.page-gdpr__highlight {
  color: #FFD700;
  font-weight: bold;
}

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

.page-gdpr__grid-item {
  background-color: #2A3343;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-gdpr__item-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-gdpr__grid-item .page-gdpr__paragraph {
  font-size: 0.95em;
  color: #E5DFD3;
}

.page-gdpr__grid-item a {
  color: #FFD700;
  text-decoration: underline;
}

.page-gdpr__section--alt-bg {
  background-color: #1A202C;
}

.page-gdpr__list {
  list-style-type: disc;
  padding-left: 30px;
  margin-top: 20px;
  color: #E5DFD3;
}

.page-gdpr__list li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-gdpr__list strong {
  color: #FFD700;
}

.page-gdpr__image-full-width {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-gdpr__contact-section {
  text-align: center;
}

.page-gdpr__contact-info {
  font-size: 1.1em;
  margin-top: 20px;
  color: #E5DFD3;
}

.page-gdpr__contact-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-link:hover {
  text-decoration: underline;
}

.page-gdpr__cta-button--secondary {
  margin-top: 30px;
  background-color: #FFD700;
  color: #1A202C;
}

.page-gdpr__cta-button--secondary:hover {
  background-color: #e6c200;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2.2em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__subtitle {
    font-size: 0.9em;
  }
  .page-gdpr__section {
    padding: 30px 15px;
  }
  .page-gdpr__list {
    padding-left: 20px;
  }
}