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

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

.page-gdpr-hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #000080, #333366);
  color: #ffffff;
  overflow: hidden;
}

.page-gdpr-hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-gdpr-hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-gdpr-hero h1 {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr-hero p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-gdpr-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #000080;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-gdpr-cta-button:hover {
  background: #e0b000;
  color: #000055;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

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

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

.page-gdpr-section h2 {
  font-size: 2.5em;
  color: #000080;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-gdpr-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr-section h3 {
  font-size: 1.5em;
  color: #000080;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-gdpr-section p {
  margin-bottom: 15px;
  color: #444444;
}

.page-gdpr-section ul {
  list-style: disc;
  margin-left: 25px;
  padding-left: 0;
}

.page-gdpr-section ul li {
  margin-bottom: 10px;
  color: #444444;
}

.page-gdpr-section ul li strong {
  color: #000080;
}

.page-gdpr-section a {
  color: #000080;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-gdpr-section a:hover {
  color: #FFD700;
  text-decoration: underline;
}

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

.page-gdpr-contact-button {
  margin-top: 30px;
  background: #000080;
  color: #FFD700;
  box-shadow: 0 6px 15px rgba(0, 0, 128, 0.4);
}

.page-gdpr-contact-button:hover {
  background: #000055;
  color: #e0b000;
  box-shadow: 0 8px 20px rgba(0, 0, 128, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr-hero h1 {
    font-size: 2.5em;
  }

  .page-gdpr-hero p {
    font-size: 1.1em;
  }

  .page-gdpr-section h2 {
    font-size: 2em;
  }

  .page-gdpr-section h3 {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-gdpr-hero {
    padding: 40px 15px;
  }

  .page-gdpr-hero h1 {
    font-size: 2em;
  }

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

  .page-gdpr-cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }

  .page-gdpr-section {
    padding: 40px 0;
  }

  .page-gdpr-section h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-gdpr-section h3 {
    font-size: 1.2em;
  }

  .page-gdpr-container {
    padding: 15px;
  }

  .page-gdpr-section ul {
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .page-gdpr-hero h1 {
    font-size: 1.8em;
  }

  .page-gdpr-hero p {
    font-size: 0.9em;
  }

  .page-gdpr-cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }

  .page-gdpr-section h2 {
    font-size: 1.5em;
  }

  .page-gdpr-section h3 {
    font-size: 1.1em;
  }
}