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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #007bff, #ffc107);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-gdpr__subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: rgba(255, 255, 255, 0.9);
}

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

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

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

.page-gdpr__section-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 600;
}

.page-gdpr__section p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #495057;
}

.page-gdpr__section ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #495057;
}

.page-gdpr__section ul li {
  margin-bottom: 8px;
}

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

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

.page-gdpr__section-image {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

.page-gdpr__button--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-gdpr__button--secondary {
  background-color: #ffc107;
  color: #333333;
  border: 2px solid #ffc107;
}

.page-gdpr__button--secondary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.6em;
  }
  .page-gdpr__section p, .page-gdpr__section ul li {
    font-size: 0.95em;
  }
  .page-gdpr__hero-image, .page-gdpr__section-image {
    max-width: 95%;
  }
  .page-gdpr__button {
    padding: 10px 20px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__subtitle {
    font-size: 0.9em;
  }
  .page-gdpr__section-title {
    font-size: 1.4em;
  }
  .page-gdpr__button {
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .page-gdpr__container {
    padding: 15px;
  }
}