/* style/gdpr.css */
.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1A2E44; /* Dark blue for main text */
  background-color: #F8F8F8; /* Light grey background */
}

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, #1A2E44, #3a5c81);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

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

.page-gdpr__intro-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.8;
}

.page-gdpr__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
}

.page-gdpr__content-section {
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

.page-gdpr__content-section:last-of-type {
  border-bottom: none;
}

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #1A2E44;
  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: #E44D26;
  border-radius: 2px;
}

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

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

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

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

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

.page-gdpr__data-points {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-gdpr__data-point {
  flex: 1 1 calc(33% - 20px);
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-gdpr__data-point:hover {
  transform: translateY(-5px);
}

.page-gdpr__sub-title {
  font-size: 1.5em;
  color: #1A2E44;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__contact-section {
  padding: 60px 0;
  background-color: #f0f4f8;
  text-align: center;
}

.page-gdpr__contact-info {
  font-size: 1.2em;
  margin-top: 20px;
  margin-bottom: 10px;
}

.page-gdpr__contact-link {
  color: #E44D26;
  text-decoration: none;
  font-weight: bold;
}

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

.page-gdpr__cta-section {
  background-color: #1A2E44;
  color: #FFFFFF;
  padding: 70px 0;
  text-align: center;
}

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

.page-gdpr__cta-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
}

.page-gdpr__cta-button {
  display: inline-block;
  background-color: #E44D26;
  color: #000000; /* Ensuring WCAG AA contrast for normal text on red */
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #E44D26;
}

.page-gdpr__cta-button:hover {
  background-color: #ff6633; /* Slightly brighter red on hover */
  transform: translateY(-3px);
  border-color: #ff6633;
}

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

  .page-gdpr__intro-text {
    font-size: 1em;
  }

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

  .page-gdpr__paragraph,
  .page-gdpr__list,
  .page-gdpr__data-point p {
    font-size: 0.95em;
  }

  .page-gdpr__data-points {
    flex-direction: column;
  }

  .page-gdpr__data-point {
    flex: 1 1 100%;
  }

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

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

@media (max-width: 480px) {
  .page-gdpr__hero-section,
  .page-gdpr__content-section,
  .page-gdpr__contact-section,
  .page-gdpr__cta-section {
    padding: 40px 0;
  }

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

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

  .page-gdpr__sub-title {
    font-size: 1.3em;
  }

  .page-gdpr__list {
    margin-left: 15px;
  }
}