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

.page-gdpr a {
  color: #CC0000;
  text-decoration: none;
}

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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #CC0000 0%, #FFCC00 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-gdpr__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: bold;
}

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

.page-gdpr__subtitle a {
  color: #ffffff;
  font-weight: bold;
}

.page-gdpr__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-gdpr__btn--primary {
  background-color: #FFCC00;
  color: #CC0000;
}

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

.page-gdpr__btn--secondary {
  background-color: #CC0000;
  color: #ffffff;
  border: 2px solid #FFCC00;
}

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

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #CC0000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-gdpr__section--intro p {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: justify;
}

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

.page-gdpr__grid-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
}

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

.page-gdpr__grid-item h3 {
  font-size: 1.5em;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-gdpr__grid-item p {
  font-size: 1em;
  color: #555;
}

.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 strong {
  color: #CC0000;
}

.page-gdpr__illustration {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__section--contact p {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 15px;
}

.page-gdpr__section--contact a {
  font-weight: bold;
}

.page-gdpr__section--contact .page-gdpr__btn {
  margin-top: 30px;
}

.page-gdpr__section--more-info p {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 25px;
}

.page-gdpr__section--more-info .page-gdpr__btn {
  margin-top: 20px;
}

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

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

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

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

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

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

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

  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

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

  .page-gdpr__grid-item {
    padding: 20px;
  }

  .page-gdpr__list {
    margin-left: 0;
    padding-left: 15px;
  }
}