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

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

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

.page-gdpr__btn--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 1px solid #FFCC00;
  margin-right: 10px;
}

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

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

.page-gdpr__info-block {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-gdpr__heading {
  color: #003366;
  font-size: 2em;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFCC00;
  padding-bottom: 10px;
}

.page-gdpr__paragraph {
  margin-bottom: 15px;
  color: #444;
}

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

.page-gdpr__list--numbered {
  list-style-type: decimal;
}

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

.page-gdpr__link {
  color: #003366;
  text-decoration: underline;
}

.page-gdpr__link:hover {
  color: #FFCC00;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  display: block;
}

.page-gdpr__cta-section {
  background-color: #003366;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-gdpr__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

  .page-gdpr__heading {
    font-size: 1.8em;
  }

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

  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-gdpr__btn--secondary {
    margin-right: 0;
    margin-bottom: 10px;
    display: block;
  }
}

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

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

  .page-gdpr__heading {
    font-size: 1.5em;
  }

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

  .page-gdpr__info-block {
    padding: 20px;
  }
}