/* style/gdpr.css */
.page-gdpr {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-gdpr__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-gdpr__subtitle {
  font-size: 1.4em;
  opacity: 0.9;
  color: #e0e0e0;
}

.page-gdpr__section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-gdpr__section--alt {
  background-color: #f2f4f7;
}

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

.page-gdpr__heading {
  font-size: 1.8em;
  color: #007bff;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-gdpr p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444;
}

.page-gdpr__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #444;
}

.page-gdpr__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

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

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

.page-gdpr__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

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

.page-gdpr__image-wrapper {
  text-align: center;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image--full-width {
  margin-top: 30px;
}

.page-gdpr__contact {
  text-align: center;
  padding-bottom: 80px;
}

.page-gdpr__contact .page-gdpr__section-title {
  margin-bottom: 20px;
}

.page-gdpr__button {
  display: inline-block;
  background-color: #ffc107;
  color: #212529;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__heading {
    font-size: 1.6em;
  }
  .page-gdpr__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-gdpr__grid--reverse {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero {
    padding: 60px 0;
  }
  .page-gdpr__title {
    font-size: 2.2em;
  }
  .page-gdpr__subtitle {
    font-size: 1.2em;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-gdpr__heading {
    font-size: 1.4em;
  }
  .page-gdpr p,
  .page-gdpr__list li {
    font-size: 1em;
  }
  .page-gdpr__button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 576px) {
  .page-gdpr__hero {
    padding: 40px 0;
  }
  .page-gdpr__title {
    font-size: 1.8em;
  }
  .page-gdpr__subtitle {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.5em;
  }
  .page-gdpr__heading {
    font-size: 1.2em;
  }
  .page-gdpr__container {
    padding: 0 15px;
  }
  .page-gdpr__list {
    margin-left: 15px;
  }
}