.page-gdpr {
  color: #f0f0f0; /* Light text for dark body background */
  background-color: transparent; /* Body background is #121212 from shared.css */
  padding-top: 120px; /* Desktop: Adjust for fixed header */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-gdpr__hero-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(255, 215, 0, 0.2) 100%), url('[GALLERY:bg:23win1,gdpr,abstract_security_pattern]') no-repeat center center/cover;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--primary-color, #FFD700);
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  color: var(--primary-color, #FFD700);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

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

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

.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__dark-bg {
  background-color: rgba(255, 215, 0, 0.05); /* Slightly lighter dark background for contrast */
  color: #f0f0f0;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--primary-color, #FFD700);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-gdpr strong {
  color: var(--primary-color, #FFD700);
}

.page-gdpr__rights-list,
.page-gdpr__cookie-list,
.page-gdpr__contact-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-gdpr__rights-item,
.page-gdpr__cookie-item,
.page-gdpr__contact-item {
  background-color: rgba(255, 255, 255, 0.08); /* Dark card background */
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid var(--primary-color, #FFD700);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__rights-item:hover,
.page-gdpr__cookie-item:hover,
.page-gdpr__contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__rights-title {
  font-size: 1.5em;
  color: var(--primary-color, #FFD700);
  margin-top: 0;
  margin-bottom: 10px;
}

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

.page-gdpr__protection-item.page-gdpr__card {
  background-color: rgba(139, 0, 0, 0.7); /* Auxiliary color for cards */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 1px solid var(--primary-color, #FFD700);
}

.page-gdpr__protection-item.page-gdpr__card:hover {
  background-color: rgba(139, 0, 0, 0.9);
  transform: translateY(-5px);
}

.page-gdpr__protection-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-gdpr__card-title {
  font-size: 1.6em;
  color: var(--primary-color, #FFD700);
  margin-top: 0;
  margin-bottom: 15px;
}

.page-gdpr__link {
  color: var(--primary-color, #FFD700);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

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

.page-gdpr__contact-label {
  color: var(--primary-color, #FFD700);
  margin-right: 10px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__protection-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr {
    padding-top: 100px !important; /* Mobile: Adjust for fixed header */
    font-size: 15px;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__hero-section {
    padding: 60px 0;
  }
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__hero-image {
    max-width: 90%;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr__sub-title {
    font-size: 1.5em;
  }
  .page-gdpr__rights-item, .page-gdpr__cookie-item, .page-gdpr__contact-item {
    padding: 20px;
  }
  .page-gdpr__rights-title {
    font-size: 1.3em;
  }
  .page-gdpr__protection-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__protection-icon {
    width: 80px;
    height: 80px;
  }
  .page-gdpr__card-title {
    font-size: 1.4em;
  }
  /* Ensure all images are responsive */
  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-gdpr__section,
  .page-gdpr__card,
  .page-gdpr__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__sub-title {
    font-size: 1.3em;
  }
  .page-gdpr__rights-item, .page-gdpr__cookie-item, .page-gdpr__contact-item {
    padding: 15px;
    border-left-width: 3px;
  }
  .page-gdpr__rights-title {
    font-size: 1.2em;
  }
  .page-gdpr__card-title {
    font-size: 1.2em;
  }
}