/* style/gdpr.css */
.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-bottom: 5px solid #FFD700;
}

.page-gdpr__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-gdpr__subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #eee;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-gdpr__btn--primary {
  background-color: #FFD700;
  color: #8B0000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.page-gdpr__btn--primary:hover {
  background-color: #e6c200;
  color: #6a0000;
}

.page-gdpr__btn--secondary {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.page-gdpr__btn--secondary:hover {
  background-color: #6a0000;
  color: #e6c200;
}

.page-gdpr__section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-gdpr__section--alt-bg {
  background-color: #eee;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #8B0000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-gdpr__content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-gdpr__text-block {
  flex: 1;
  min-width: 300px;
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
  color: #555;
}

.page-gdpr__image-block {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.page-gdpr__list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
}

.page-gdpr__list-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.page-gdpr__list-item:hover {
  transform: translateY(-5px);
}

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

.page-gdpr__item-title::before {
  content: '✔';
  color: #FFD700;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-gdpr__list-item p {
  color: #666;
}

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

.page-gdpr__right-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__right-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.page-gdpr__card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: inline-block;
  /* No CSS filter for color change */
}

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

.page-gdpr__right-card p {
  color: #666;
}

.page-gdpr__section--cta-bg {
  background: linear-gradient(90deg, #8B0000 0%, #FFD700 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.page-gdpr__cta-content {
  max-width: 800px;
}

.page-gdpr__cta-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-gdpr__cta-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #eee;
}

.page-gdpr__footer-placeholder {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: #fff;
  font-size: 0.9em;
}

.page-gdpr__copyright {
  margin: 0;
}

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

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

  .page-gdpr__content-grid {
    flex-direction: column;
  }

  .page-gdpr__list-grid, .page-gdpr__rights-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .page-gdpr__hero, .page-gdpr__section, .page-gdpr__section--cta-bg {
    padding: 40px 15px;
  }

  .page-gdpr__title {
    font-size: 1.8em;
  }

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

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

  .page-gdpr__item-title {
    font-size: 1.2em;
  }

  .page-gdpr__card-title {
    font-size: 1.3em;
  }

  .page-gdpr__cta-title {
    font-size: 1.8em;
  }
}