/* 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-section {
  background: linear-gradient(135deg, #2C3E50, #E74C3C);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
  font-weight: bold;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

.page-gdpr__content-section {
  padding: 60px 0;
  background-color: #fff;
}

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

.page-gdpr__grid-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-gdpr__image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  align-self: center;
  display: block;
}

.page-gdpr__section-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #2C3E50;
  font-weight: bold;
}

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

.page-gdpr__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #555;
}

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

.page-gdpr__cta-section {
  background-color: #2C3E50;
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.page-gdpr__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #fff;
  font-weight: bold;
}

.page-gdpr__cta-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0 10px 15px 10px;
  white-space: nowrap;
}

.page-gdpr__btn--primary {
  background-color: #E74C3C;
  color: #fff;
  border: 2px solid #E74C3C;
}

.page-gdpr__btn--primary:hover {
  background-color: #c0392b;
  border-color: #c0392b;
  color: #fff;
}

.page-gdpr__btn--secondary {
  background-color: #fff;
  color: #2C3E50;
  border: 2px solid #2C3E50;
}

.page-gdpr__btn--secondary:hover {
  background-color: #2C3E50;
  color: #fff;
}

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

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

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

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

  .page-gdpr__grid {
    grid-template-columns: 1fr;
  }
  
  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }

  .page-gdpr__hero-section,
  .page-gdpr__content-section,
  .page-gdpr__cta-section {
    padding: 40px 0;
  }

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

  .page-gdpr__btn {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
  .page-gdpr__grid-item {
    padding: 20px;
  }
}