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

.page-privacy-policy__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-privacy-policy__hero-content {
  max-width: 900px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-privacy-policy__title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-privacy-policy__subtitle {
  font-size: 1.2em;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.page-privacy-policy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-privacy-policy__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 8px;
}

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

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

.page-privacy-policy__heading {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.page-privacy-policy__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-privacy-policy__container p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-privacy-policy__container ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

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

.page-privacy-policy__container strong {
  color: #0056b3;
}

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

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

.page-privacy-policy__contact-link:hover {
  text-decoration: underline;
}

.page-privacy-policy__cta-wrapper {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: #007bff;
  border-radius: 8px;
  color: #fff;
}

.page-privacy-policy__cta-text {
  font-size: 1.4em;
  margin-bottom: 20px;
  color: #fff;
}

.page-privacy-policy__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #333;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

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

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

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

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

  .page-privacy-policy__container {
    padding: 15px;
  }

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

  .page-privacy-policy__cta-text {
    font-size: 1.2em;
  }

  .page-privacy-policy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

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

  .page-privacy-policy__subtitle {
    font-size: 0.9em;
  }

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

  .page-privacy-policy__container ul {
    margin-left: 15px;
  }
}