/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #1A1A2E; /* Dark blue/near black background */
  line-height: 1.6;
}

.page-gdpr a {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-gdpr a:hover {
  color: #DC143C; /* Deep red on hover */
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #3a0000 100%); /* Dark gradient */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-gdpr__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #DC143C; /* Deep red button */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-gdpr__button:hover {
  background-color: #FFD700; /* Gold on hover */
  transform: translateY(-2px);
  color: #1A1A2E;
}

.page-gdpr__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  max-width: 500px;
  height: auto;
  z-index: 0;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold section title */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #DC143C; /* Deep red underline */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr__introduction p,
.page-gdpr__rights p,
.page-gdpr__data-protection p,
.page-gdpr__contact p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-gdpr__rights ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-gdpr__rights li {
  background-color: #2A2A4A; /* Slightly lighter dark blue for list items */
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700; /* Gold border */
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-gdpr__rights li:hover {
  transform: translateX(5px);
}

.page-gdpr__rights li strong {
  color: #FFD700;
  font-size: 1.2em;
  display: block;
  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 {
  background-color: #2A2A4A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-gdpr__protection-item:hover {
  transform: translateY(-10px);
  background-color: #3A3A5A;
}

.page-gdpr__protection-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7)); /* Gold glow */
}

.page-gdpr__protection-item h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-gdpr__protection-item p {
  color: #C0C0C0;
}

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

  .page-gdpr__subtitle {
    font-size: 1.2em;
  }

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

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

  .page-gdpr__hero-image {
    max-width: 300px;
    opacity: 0.1;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 2em;
  }

  .page-gdpr__subtitle {
    font-size: 1em;
  }

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

  .page-gdpr__hero-image {
    display: none;
  }
}