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

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

.page-gdpr-hero {
  background: linear-gradient(135deg, #1A202C 0%, #3a414e 100%); /* Slightly lighter gradient for hero */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-gdpr-hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  font-weight: bold;
}

.page-gdpr-hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr-section {
  padding: 60px 0;
  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: 2.2em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-gdpr-content-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }
  .page-gdpr-section-title {
    text-align: left;
  }
  .page-gdpr-hero-title, .page-gdpr-hero-description {
    text-align: center;
  }
  .page-gdpr-content-grid.reverse-order {
    grid-template-columns: 1fr 1fr;
  }
  .page-gdpr-content-grid.reverse-order .page-gdpr-text-content {
    order: 2;
  }
  .page-gdpr-content-grid.reverse-order .page-gdpr-image-wrapper {
    order: 1;
  }
}

.page-gdpr-text-content p {
  margin-bottom: 15px;
}

.page-gdpr-text-content ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-gdpr-text-content ul li {
  margin-bottom: 8px;
}

.page-gdpr-image-wrapper {
  text-align: center;
}

.page-gdpr-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr-image-full-width {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-gdpr-image-full-width .page-gdpr-image {
  max-width: 80%;
}

.page-gdpr-btn {
  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-top: 20px;
}

.page-gdpr-btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
}

.page-gdpr-btn-primary:hover {
  background-color: #e5c100; /* Darker gold on hover */
}

.page-gdpr-btn-secondary {
  background-color: #3a414e; /* Darker grey button */
  color: #FFD700; /* Gold text on dark grey */
  border: 1px solid #FFD700;
}

.page-gdpr-btn-secondary:hover {
  background-color: #FFD700; /* Gold background on hover */
  color: #1A202C; /* Dark text on gold */
}

.page-gdpr-link {
  color: #FFD700; /* Gold links */
  text-decoration: underline;
}

.page-gdpr-link:hover {
  color: #e5c100;
}

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .page-gdpr-hero {
    padding: 60px 15px;
  }
  .page-gdpr-hero-title {
    font-size: 2em;
  }
  .page-gdpr-hero-description {
    font-size: 1em;
  }
  .page-gdpr-section {
    padding: 40px 0;
  }
  .page-gdpr-section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr-text-content {
    text-align: center;
  }
  .page-gdpr-text-content ul {
    text-align: left;
    margin-left: 0;
    padding-left: 20px;
  }
  .page-gdpr-image-full-width .page-gdpr-image {
    max-width: 95%;
  }
}