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

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

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

.page-gdpr__hero-title {
  font-size: 2.8em;
  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 30px auto;
  color: rgba(255, 255, 255, 0.9);
}

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

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-gdpr__btn--primary {
  background-color: #FFD700;
  color: #8B0000;
  border-color: #FFD700;
}

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

.page-gdpr__btn--secondary {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.page-gdpr__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFD700;
  border-color: #FFD700;
  transform: translateY(-2px);
}

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

.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-section {
  padding: 60px 0;
}

.page-gdpr__bg--light {
  background-color: #ffffff;
}

.page-gdpr__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

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

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__grid-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
  border-bottom: 2px solid #8B0000;
  padding-bottom: 10px;
}

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

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

.page-gdpr__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444;
}

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

.page-gdpr__contact-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-gdpr__contact-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-gdpr__contact-list a {
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
}

.page-gdpr__contact-list a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-gdpr__image-wrapper {
  margin: 40px auto;
  text-align: center;
}

.page-gdpr__image-wrapper--small {
  max-width: 600px;
}

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

.page-gdpr__cta-group--bottom {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

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

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

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

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

  .page-gdpr__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__btn {
    width: 80%;
    margin: 0 auto;
  }
}

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

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

  .page-gdpr__btn {
    width: 95%;
  }
}