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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #A80000, #FFD700);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

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

.page-gdpr__title a,
.page-gdpr__subtitle a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__title a:hover,
.page-gdpr__subtitle a:hover {
  text-decoration: underline;
}

.page-gdpr__subtitle {
  font-size: 1.3em;
  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, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-gdpr__btn--primary {
  background-color: #A80000;
  color: #fff;
}

.page-gdpr__btn--primary:hover {
  background-color: #8a0000;
  transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
  background-color: #FFD700;
  color: #A80000;
}

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

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

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

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

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 2px;
}

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

.page-gdpr__content-grid:nth-child(even) {
  flex-direction: row-reverse;
}

.page-gdpr__text-block {
  flex: 1;
  font-size: 1.1em;
  color: #444;
}

.page-gdpr__text-block p {
  margin-bottom: 1em;
}

.page-gdpr__text-block a {
  color: #A80000;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__text-block a:hover {
  text-decoration: underline;
}

.page-gdpr__image-wrapper {
  flex: 1;
  text-align: center;
}

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

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  font-size: 1.1em;
  color: #444;
}

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

.page-gdpr__list li strong {
  color: #A80000;
}

.page-gdpr__cta-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-gdpr__title {
    font-size: 2.2em;
  }
  .page-gdpr__subtitle {
    font-size: 1.1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__content-grid {
    flex-direction: column;
  }
  .page-gdpr__content-grid:nth-child(even) {
    flex-direction: column;
  }
  .page-gdpr__text-block, .page-gdpr__image-wrapper {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__list {
    margin-left: 0;
    padding-left: 20px;
  }
  .page-gdpr__cta-grid {
    flex-direction: column;
  }
  .page-gdpr__btn {
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 40px 0;
  }
  .page-gdpr__title {
    font-size: 1.5em;
  }
  .page-gdpr__subtitle {
    font-size: 0.9em;
  }
  .page-gdpr__section {
    padding: 30px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.4em;
  }
  .page-gdpr__text-block, .page-gdpr__list {
    font-size: 0.95em;
  }
}