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

.page-privacy-policy__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-privacy-policy__hero {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.page-privacy-policy__title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-privacy-policy__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy-policy__btn {
  display: inline-block;
  background-color: #ffc107; /* A vibrant yellow for contrast */
  color: #333;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-privacy-policy__btn--secondary {
  background-color: #007bff;
  color: #fff;
}

.page-privacy-policy__btn--secondary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-privacy-policy__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-privacy-policy__section--alt {
  background-color: #e9ecef;
}

.page-privacy-policy__heading {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 25px;
  text-align: left;
  border-bottom: 2px solid #28a745;
  padding-bottom: 10px;
}

.page-privacy-policy__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-privacy-policy__list li {
  margin-bottom: 10px;
  color: #555;
}

.page-privacy-policy__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__contact {
  text-align: center;
  background-color: #f8f9fa;
  padding-bottom: 80px;
}

.page-privacy-policy__contact .page-privacy-policy__heading {
  text-align: center;
  border-bottom: none;
  color: #28a745;
}

@media (max-width: 768px) {
  .page-privacy-policy__title {
    font-size: 2.5em;
  }

  .page-privacy-policy__heading {
    font-size: 1.8em;
  }

  .page-privacy-policy__hero {
    padding: 60px 0;
  }

  .page-privacy-policy__section {
    padding: 40px 0;
  }
}

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

  .page-privacy-policy__description {
    font-size: 1em;
  }

  .page-privacy-policy__heading {
    font-size: 1.5em;
  }

  .page-privacy-policy__list {
    margin-left: 0;
    padding-left: 15px;
  }
}