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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #007bff, #4da3ff);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-gdpr__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: bold;
}

.page-gdpr__subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-gdpr__hero-image-container {
  position: absolute;
  bottom: 0;
  right: -5%;
  opacity: 0.2;
  z-index: 0;
  width: 50%;
  height: auto;
  max-width: 600px;
}

.page-gdpr__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-gdpr__section {
  padding: 60px 0;
}

.page-gdpr__section--alt-bg {
  background-color: #e6f2ff; /* Lighter shade of primary for contrast */
}

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #0056b3; /* Darker primary for headings */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-gdpr__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #444;
}

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

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

.page-gdpr__section ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-gdpr__section ul li {
  background-color: #f0f8ff;
  border-left: 5px solid #007bff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.05em;
  color: #333;
}

.page-gdpr__highlight {
  color: #0056b3;
}

.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: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__grid-item h3 {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

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

.page-gdpr__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-gdpr__link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr__link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
  margin-top: 20px;
}

.page-gdpr__btn--primary {
  background-color: #ffc107;
  color: #333; /* Dark text for light background */
  border: 2px solid #ffc107;
}

.page-gdpr__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

.page-gdpr__btn--secondary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-gdpr__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
}

.page-gdpr__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-gdpr__cta {
  background-color: #007bff;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

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

.page-gdpr__cta p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2.5em;
  }

  .page-gdpr__subtitle {
    font-size: 1.2em;
  }

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

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

  .page-gdpr__hero-image-container {
    position: relative;
    width: 80%;
    right: auto;
    margin-top: 30px;
    opacity: 1;
  }

  .page-gdpr__hero {
    padding: 60px 0;
  }

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

  .page-gdpr__cta p {
    font-size: 1em;
  }
}

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

  .page-gdpr__subtitle {
    font-size: 1em;
  }

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

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

  .page-gdpr__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

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

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