.page-gdpr {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #0A192F; /* Dark text for contrast */
  background-color: #f8f8f8;
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #0A192F 0%, #30475E 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-description {
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

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

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

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

.page-gdpr__section-title {
  font-size: 2.2em;
  color: #0A192F;
  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: 20px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #333;
}

.page-gdpr__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-gdpr__list li {
  background-color: #FFFFFF;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-gdpr__list-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 3px;
}

.page-gdpr__list li strong {
  color: #0A192F;
  font-size: 1.1em;
}

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

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

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

.page-gdpr__btn {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-gdpr__keyword {
  color: #FFD700;
  font-weight: bold;
}

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

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

  .page-gdpr__list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }

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

  .page-gdpr__hero-description,
  .page-gdpr__section p,
  .page-gdpr__list li {
    font-size: 0.95em;
  }

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

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