/* Privacy Policy Page Styles */
.privacy-policy-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 10px 48px 10px;
  font-family: 'Inter', sans-serif;
  color: #222;
}

.privacy-policy-header {
  margin-bottom: 36px;
}

.privacy-policy-label {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.policy-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: #E96A43;
  margin-right: 12px;
  border-radius: 2px;
}
.policy-label-text {
  color: #E96A43;
  font-size: 16px;
  font-weight: 500;
}
.policy-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.2;
}
.policy-intro {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0;
}
.policy-section {
  margin-bottom: 36px;
}
.policy-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}
.policy-section p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 10px;
}
.policy-section ul {
  margin-left: 1.2em;
  margin-bottom: 0;
  color: #444;
}
.policy-section ul li {
  margin-bottom: 6px;
  font-size: 1rem;
}
.policy-section ul li strong {
  color: #222;
}

@media (max-width: 600px) {
  .privacy-policy-wrapper {
    padding: 18px 6vw 32px 6vw;
  }
  .policy-title {
    font-size: 1.3rem;
  }
  .policy-section h2 {
    font-size: 1.05rem;
  }
  .policy-section p, .policy-section ul li {
    font-size: 0.97rem;
  }
}