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

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

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

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

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

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

.page-gdpr__text-content p {
  margin-bottom: 20px;
  color: #444;
}

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

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

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

.page-gdpr__principle-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__principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-gdpr__card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

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

.page-gdpr__card-title + p {
  color: #555;
}

.page-gdpr__rights-list {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-gdpr__rights-list ul {
  list-style: none;
  padding-left: 0;
}

.page-gdpr__rights-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #444;
}

.page-gdpr__rights-list li::before {
  content: '✔';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-gdpr__rights-list strong {
  color: #8B0000;
}

.page-gdpr__rights-list p {
  margin-top: 25px;
  font-style: italic;
  color: #666;
  text-align: center;
}

.page-gdpr__button {
  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, transform 0.2s ease;
  margin-top: 20px;
  text-align: center;
}

.page-gdpr__button--primary {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

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

.page-gdpr__button--secondary {
  background-color: #8B0000;
  color: #fff;
  border: 2px solid #8B0000;
}

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

.page-gdpr__button--light {
  background-color: #fff;
  color: #8B0000;
  border: 2px solid #FFD700;
}

.page-gdpr__button--light:hover {
  background-color: #f0f0f0;
  color: #6a0000;
  transform: translateY(-2px);
}

.page-gdpr__button--dark {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #8B0000;
  margin-left: 15px;
}

.page-gdpr__button--dark:hover {
  background-color: #6a0000;
  color: #ffe066;
  transform: translateY(-2px);
}

.page-gdpr__highlight {
  color: #8B0000;
  font-weight: bold;
}

.page-gdpr__section--cta-bg {
  background: linear-gradient(to right, #8B0000, #b30000);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

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

.page-gdpr__cta-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

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

.page-gdpr__cta-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-gdpr__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

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

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

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

  .page-gdpr__text-content, .page-gdpr__image-wrapper {
    min-width: unset;
    width: 100%;
  }

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

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

  .page-gdpr__button--dark {
    margin-left: 0;
  }
}

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

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

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

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

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

  .page-gdpr__principle-card {
    padding: 20px;
  }

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

  .page-gdpr__rights-list {
    padding: 20px;
  }

  .page-gdpr__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .page-gdpr__cta-description {
    font-size: 0.9em;
  }

  .page-gdpr__cta-buttons {
    flex-direction: column;
  }
  .page-gdpr__button--dark {
    margin-left: 0;
  }
}