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

.page-gdpr__hero {
  background: linear-gradient(135deg, #003366 0%, #004080 100%); /* Deeper blue gradient */
  color: #fff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-gdpr__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-gdpr__title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFCC00; /* Gold for title emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.page-gdpr__button--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

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

.page-gdpr__button:hover {
  transform: translateY(-2px);
}

.page-gdpr__section {
  padding: 60px 20px;
  text-align: center;
}

.page-gdpr__section--alt {
  background-color: #e9eff4; /* Light grey-blue for contrast */
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-gdpr__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-gdpr__text {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 20px;
  text-align: left;
}

.page-gdpr__highlight {
  color: #003366;
  font-weight: bold;
}

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

.page-gdpr__grid-item:hover {
  transform: translateY(-5px);
}

.page-gdpr__grid-image {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-gdpr__grid-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.page-gdpr__list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFCC00;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
  color: #444;
}

.page-gdpr__list-item-title {
  color: #003366;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.page-gdpr__full-width-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__contact-info {
  font-size: 1.1em;
  color: #003366;
  margin-bottom: 10px;
  font-weight: bold;
}

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

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

/* Responsive Design */
@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__text {
    text-align: center;
  }

  .page-gdpr__list li {
    text-align: center;
  }
}

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

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

  .page-gdpr__section {
    padding: 40px 15px;
  }

  .page-gdpr__grid-item {
    padding: 20px;
  }
}