/* style/gdpr.css */
:root {
  --page-gdpr-primary-color: #CC0000; /* Red */
  --page-gdpr-secondary-color: #FFD700; /* Gold */
  --page-gdpr-bg-dark: #1a1a1a; /* Dark gray for background */
  --page-gdpr-text-color-light: #f0f0f0; /* Light text for dark background */
  --page-gdpr-text-color-dark: #333333; /* Dark text for light background */
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: var(--page-gdpr-text-color-light);
  background-color: var(--page-gdpr-bg-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, var(--page-gdpr-primary-color), var(--page-gdpr-secondary-color));
  padding: 80px 0;
  text-align: center;
  color: var(--page-gdpr-text-color-dark); /* Dark text on gradient */
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: var(--page-gdpr-text-color-dark);
}

.page-gdpr__hero-subtitle {
  font-size: 1.5em;
  color: var(--page-gdpr-text-color-dark);
}

.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.5em;
  color: var(--page-gdpr-secondary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-gdpr__introduction p,
.page-gdpr__rights ul,
.page-gdpr__rights li,
.page-gdpr__principles p {
  font-size: 1.1em;
  margin-bottom: 1em;
}

.page-gdpr__highlight {
  color: var(--page-gdpr-secondary-color);
  font-weight: bold;
}

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

.page-gdpr__principle-item {
  background-color: #2a2a2a; /* Slightly lighter dark for item background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-gdpr__principle-item:hover {
  transform: translateY(-10px);
}

.page-gdpr__principle-image {
  max-width: 100%;
  height: 180px; /* Fixed height for consistency */
  object-fit: contain; /* Ensure image content is visible */
  margin-bottom: 20px;
}

.page-gdpr__principle-item h3 {
  font-size: 1.8em;
  color: var(--page-gdpr-primary-color);
  margin-bottom: 15px;
}

.page-gdpr__principle-item p {
  font-size: 1em;
  color: var(--page-gdpr-text-color-light);
}

.page-gdpr__rights ul {
  list-style-type: disc;
  margin-left: 20px;
}

.page-gdpr__rights li {
  margin-bottom: 10px;
}

.page-gdpr__rights strong {
  color: var(--page-gdpr-primary-color);
}

.page-gdpr__link-contact {
  color: var(--page-gdpr-secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__link-contact:hover {
  color: var(--page-gdpr-primary-color);
}

.page-gdpr__contact-cta {
  text-align: center;
  padding: 80px 0;
  background-color: #000; /* Even darker background for CTA */
}

.page-gdpr__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--page-gdpr-primary-color);
  color: var(--page-gdpr-text-color-light);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__btn--primary:hover {
  background-color: #a30000; /* Manual darker red */
  transform: translateY(-3px);
}

.page-gdpr__cta-subtext {
  font-size: 1.1em;
  color: var(--page-gdpr-text-color-light);
}

.page-gdpr__security-image {
  max-width: 600px;
  height: auto;
  margin-top: 30px;
}

/* Responsive design */
@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.5em;
  }

  .page-gdpr__hero-subtitle {
    font-size: 1.2em;
  }

  .page-gdpr__section-title {
    font-size: 2em;
  }

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

  .page-gdpr__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 50px 0;
  }

  .page-gdpr__hero-title {
    font-size: 2em;
  }

  .page-gdpr__hero-subtitle {
    font-size: 1em;
  }

  .page-gdpr__section {
    padding: 40px 0;
  }

  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__security-image {
    max-width: 100%;
  }
}