/* 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: 20px;
}

.page-gdpr__hero-section {
  background-color: #0A2E50;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  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;
}

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.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.2em;
  color: #0A2E50;
  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__section p {
  margin-bottom: 15px;
  color: #555;
  font-size: 1.05em;
}

.page-gdpr__principle-list, .page-gdpr__rights-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-gdpr__principle-list li, .page-gdpr__rights-list li {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #0A2E50;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__principle-list li:hover, .page-gdpr__rights-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__principle-list li strong, .page-gdpr__rights-list li strong {
  color: #0A2E50;
  display: block;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-gdpr__image {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__contact p {
  text-align: center;
  margin-bottom: 20px;
}

.page-gdpr__contact-link {
  color: #0A2E50;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.page-gdpr__cta-text {
  text-align: center;
  font-size: 1.15em;
  font-weight: bold;
  color: #0A2E50;
  margin-top: 40px;
  margin-bottom: 25px;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 auto;
  display: block;
  max-width: 250px;
}

.page-gdpr__btn--primary {
  background-color: #FFD700;
  color: #0A2E50;
  border: 2px solid #FFD700;
}

.page-gdpr__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-gdpr__disclaimer {
  background-color: #f0f0f0;
  padding: 40px 0;
  text-align: center;
  font-style: italic;
  color: #666;
}

/* Responsive Design */
@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__principle-list, .page-gdpr__rights-list {
    grid-template-columns: 1fr;
  }

  .page-gdpr__image {
    max-width: 95%;
  }

  .page-gdpr__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

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

  .page-gdpr__hero-section {
    padding: 50px 0;
  }

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

  .page-gdpr__section p {
    font-size: 0.95em;
  }

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