.page-gdpr {
  color: #ffffff; /* Body background is dark, so text is light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: var(--primary-color); /* Inherit from shared.css */
}

.page-gdpr__hero-section {
  position: relative;
  padding-top: 0; /* Assuming shared.css handles body padding-top */
  padding-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
  background: linear-gradient(135deg, #1A202C 0%, #3A404C 100%); /* Slightly lighter gradient for hero */
  text-align: center;
}

.page-gdpr__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 80px; /* Add some top padding to content */
}

.page-gdpr__main-title {
  font-size: 42px;
  font-weight: 700;
  color: #FFD700; /* Accent color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-gdpr__intro-text {
  font-size: 18px;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-gdpr__content-section {
  padding: 80px 20px;
}

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

.page-gdpr__dark-section {
  background-color: #1A202C;
  color: #ffffff;
}

.page-gdpr__light-section {
  background-color: #2a303c; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

.page-gdpr__section-title {
  font-size: 32px;
  font-weight: 700;
  color: #FFD700; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__text-block {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-gdpr__text-block p {
  margin-bottom: 20px;
}

.page-gdpr__text-block strong {
  color: #FFD700;
}

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

.page-gdpr__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-gdpr__list-item::before {
  content: '✔'; /* Custom bullet point */
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-gdpr__list--columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.page-gdpr__image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-gdpr__link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #ffffff;
  text-decoration: underline;
}

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons adapt */
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-gdpr__btn-primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-gdpr__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

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

.page-gdpr__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 36px;
  }

  .page-gdpr__section-title {
    font-size: 28px;
  }

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

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-gdpr__hero-content {
    padding-top: 60px;
  }

  .page-gdpr__main-title {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .page-gdpr__intro-text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-gdpr__content-section {
    padding: 60px 15px;
  }

  .page-gdpr__section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .page-gdpr__text-block {
    font-size: 15px;
  }

  .page-gdpr__list-item {
    padding-left: 25px;
    margin-bottom: 10px;
  }

  .page-gdpr__list-item::before {
    font-size: 18px;
  }

  .page-gdpr__image {
    margin: 30px auto;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    padding: 0 15px; /* Add padding to button group */
  }

  .page-gdpr__btn-primary,
  .page-gdpr__btn-secondary {
    font-size: 16px;
    padding: 12px 20px;
    width: 100% !important; /* Ensure buttons take full width */
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Mobile image specific rules */
  .page-gdpr img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-gdpr__section, 
  .page-gdpr__card, 
  .page-gdpr__container, 
  .page-gdpr__text-block {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Ensure no horizontal scroll from content */
  .page-gdpr {
    overflow-x: hidden;
  }
}