.page-gdpr {
  color: #333333; /* Dark text for light body background #f8f8f8 */
}

.page-gdpr__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  position: relative;
  text-align: center;
  background-color: #f8f8f8;
  padding-bottom: 40px;
}

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

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  color: #8B0000; /* Auxiliary red for strong contrast */
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  color: #555555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.page-gdpr__section {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section-title {
  font-size: 2em;
  color: #8B0000;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-gdpr__text {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444444;
}

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

.page-gdpr__principle-card {
  background-color: #fffaf0; /* Light gold background */
  border: 1px solid #FFD700;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__principle-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  max-height: 300px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 4px;
}

.page-gdpr__principle-title {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-gdpr__principle-text {
  font-size: 1em;
  line-height: 1.6;
  color: #666666;
}

.page-gdpr__rights-list, .page-gdpr__legal-bases-list, .page-gdpr__security-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444444;
}

.page-gdpr__rights-item, .page-gdpr__legal-bases-item, .page-gdpr__security-item {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-gdpr__security-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__link {
  color: #8B0000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__button--primary {
  background-color: #FFD700;
  color: #8B0000;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

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

.page-gdpr__button--secondary {
  background-color: #8B0000;
  color: #FFD700;
  box-shadow: 0 4px 10px rgba(139, 0, 0, 0.4);
}

.page-gdpr__button--secondary:hover {
  background-color: #a30000;
  transform: translateY(-2px);
}

.page-gdpr__cta-section {
  background-color: #8B0000;
  padding: 60px 20px;
  text-align: center;
  color: #ffffff;
  margin-top: 40px;
}

.page-gdpr__cta-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-gdpr__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-gdpr__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-gdpr__cta-buttons .page-gdpr__button {
  margin: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-gdpr__hero-title {
    font-size: 2.4em;
  }
  .page-gdpr__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__text {
    font-size: 1em;
  }
  .page-gdpr__principles-grid {
    grid-template-columns: 1fr;
  }
  .page-gdpr__principle-image, .page-gdpr__security-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and don't overflow */
  }
  .page-gdpr__cta-title {
    font-size: 1.8em;
  }
  .page-gdpr__cta-description {
    font-size: 1em;
  }
  .page-gdpr__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-gdpr__cta-buttons .page-gdpr__button {
    margin: 0;
  }
  .page-gdpr {
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
  }
  .page-gdpr__hero-image, .page-gdpr__principle-image, .page-gdpr__security-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.6em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__button {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-gdpr__cta-title {
    font-size: 1.5em;
  }
}