.page-gdpr {
  color: #ffffff; /* Text color for dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-gdpr__hero-section {
  position: relative;
  width: 100%;
  padding: 120px 20px 60px; /* Adjusted padding-top for fixed header */
  background-color: #1a1a1a;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-gdpr__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-gdpr__main-title {
  font-size: 3.2em;
  color: var(--primary-color, #007bff);
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-gdpr__hero-image {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  margin-top: 30px;
}

.page-gdpr__section {
  padding: 60px 20px;
  background-color: #121212; /* Ensure section background matches body for consistency */
}

.page-gdpr__heading {
  font-size: 2.5em;
  color: var(--secondary-color, #ffc107);
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.page-gdpr__section p {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

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

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

.page-gdpr__card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white for dark background */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-gdpr__card-title {
  font-size: 1.5em;
  color: var(--primary-color, #007bff);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-gdpr__card p {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 0;
}

.page-gdpr__rights-list {
  list-style: none;
  padding: 0;
}

.page-gdpr__rights-list li {
  background: rgba(255, 255, 255, 0.05);
  border-left: 5px solid var(--secondary-color, #ffc107);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-gdpr__list-title {
  font-size: 1.3em;
  color: var(--primary-color, #007bff);
  margin-bottom: 10px;
}

.page-gdpr__list-title + p {
  margin-top: 0;
  color: #e0e0e0;
}

.page-gdpr__illustration-image {
  max-width: 70%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.page-gdpr__contact-info {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__contact-info p {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-gdpr__contact-link {
  color: var(--secondary-color, #ffc107);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

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

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__btn-primary {
  background: var(--primary-color, #007bff);
  color: #ffffff;
}

.page-gdpr__btn-primary:hover {
  background: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-gdpr__btn-secondary {
  background: var(--secondary-color, #ffc107);
  color: #121212;
}

.page-gdpr__btn-secondary:hover {
  background: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-gdpr__main-title {
    font-size: 2.8em;
  }
  .page-gdpr__heading {
    font-size: 2em;
  }
  .page-gdpr__hero-image, .page-gdpr__illustration-image {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 100px; /* Mobile padding-top for fixed header */
    padding-bottom: 40px;
  }
  .page-gdpr__section {
    padding: 40px 15px;
  }
  .page-gdpr__main-title {
    font-size: 2.2em;
    margin-bottom: 20px;
  }
  .page-gdpr__description {
    font-size: 1em;
  }
  .page-gdpr__heading {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-gdpr__section p, .page-gdpr__list li, .page-gdpr__card p, .page-gdpr__contact-info p {
    font-size: 0.95em;
  }
  .page-gdpr__principles-grid, .page-gdpr__measures-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__card {
    padding: 20px;
  }
  .page-gdpr__card-title {
    font-size: 1.3em;
  }
  .page-gdpr__list-title {
    font-size: 1.1em;
  }
  .page-gdpr__hero-image, .page-gdpr__illustration-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    padding: 0 5px;
  }
  .page-gdpr__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
  }
  .page-gdpr__cta-button {
    width: 100% !important;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-gdpr__container {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .page-gdpr__main-title {
    font-size: 1.8em;
  }
  .page-gdpr__heading {
    font-size: 1.5em;
  }
  .page-gdpr__cta-button {
    font-size: 0.95em;
  }
  .page-gdpr__contact-info {
    padding: 20px;
  }
}

/* Ensure all images are responsive */
.page-gdpr img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure all containers with images/buttons are responsive */
.page-gdpr__hero-section,
.page-gdpr__section,
.page-gdpr__container,
.page-gdpr__card,
.page-gdpr__cta-buttons {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}