/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 52:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.customer-reviews-section {
  padding: 80px 20px;
}
.customer-reviews-heading {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
}
.review-card {
  border-radius: 16px;
  padding: 30px;
  margin: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  height: 100%;
  text-align: inherit;
  transition: transform 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
}
.review-rating {
  font-size: 1.4rem;
  color: #FFC107;
  margin-bottom: 15px;
}
.review-text {
  margin-bottom: 20px;
}
.review-name {
  font-weight: 600;
  color: #555;
}
/* Splide adjustments */
.splide__slide {
  display: flex;
  height: 100%;
}
.splide__pagination {
  margin-top: 30px;
  justify-content: center;
}
</style>
.privacy-policy-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
}

.privacy-policy-container {
  max-width: 900px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  animation: fadeInUp 1.2s ease both;
}

.privacy-policy-container h1 {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 800;
  color: #0d47a1;
  text-transform: uppercase;
}

.privacy-policy-container h2 {
  font-size: 1.5rem;
  margin-top: 35px;
  color: #1565c0;
  font-weight: 600;
}

.privacy-policy-container p,
.privacy-policy-container li {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 14px;
}

.privacy-policy-container ul {
  margin-left: 20px;
  list-style-type: disc;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}