/* style/gdpr.css */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background #FFFFFF */
  background-color: #FFFFFF;
}

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #017439, #4d9e74);
  padding: 80px 20px;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-gdpr__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.page-gdpr__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-gdpr__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-gdpr__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1em;
  border: none;
  cursor: pointer;
}

.page-gdpr__button--register {
  background-color: #C30808;
  color: #FFFF00;
}

.page-gdpr__button--register:hover {
  background-color: #a30707;
  transform: translateY(-2px);
}

.page-gdpr__button--login {
  background-color: #C30808;
  color: #FFFF00;
}

.page-gdpr__button--login:hover {
  background-color: #a30707;
  transform: translateY(-2px);
}

.page-gdpr__hero-image-wrapper {
  max-width: 600px;
  margin-top: 40px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-gdpr__content-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.page-gdpr__article {
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-gdpr__article-title {
  font-size: 2em;
  color: #017439;
  margin-top: 30px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

.page-gdpr__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #333333;
}

.page-gdpr__article-paragraph a {
  color: #017439;
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr__article-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-gdpr__list-item strong {
  color: #017439;
}

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

.page-gdpr__grid-item {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-gdpr__grid-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-gdpr__grid-title {
  font-size: 1.4em;
  color: #017439;
  margin-bottom: 10px;
}

.page-gdpr__grid-description {
  font-size: 0.95em;
  color: #555555;
}

.page-gdpr__cta-section {
  background-color: #e6f7ed;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin-top: 50px;
}

.page-gdpr__cta-title {
  font-size: 2em;
  color: #017439;
  margin-bottom: 15px;
}

.page-gdpr__cta-description {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 30px;
}

.page-gdpr__cta-description a {
  color: #017439;
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr__button--primary {
  background-color: #C30808;
  color: #FFFF00;
  font-size: 1.1em;
  padding: 15px 30px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-gdpr__hero-section {
    flex-direction: column;
    padding: 60px 15px;
  }

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

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

  .page-gdpr__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-gdpr__article {
    padding: 25px;
  }

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

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

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

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

  .page-gdpr__button {
    width: 100%;
    text-align: center;
  }

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

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