/* ─── PRIVACY PAGE STYLES ─── */

/* Privacy Hero Section */
.privacy-hero {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 40px;
  animation: fadeUp 0.6s ease both;
}

.privacy-hero-content {
  max-width: 100%;
  margin: 0 auto;
}

.privacy-hero .hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-bottom: 20px;
}

.privacy-hero .hero-subtitle {
  font-size: 18px;
  max-width: 100%;
}

.last-updated {
  font-size: 13px;
  color: var(--sage-dark);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 16px;
}

/* Policy Content */
.policy-content {
  max-width: 100%;
  margin: 0 auto 80px;
  animation: fadeUp 0.6s ease 0.1s both;
}

.policy-section {
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: 18px;
  padding: 36px 32px;
  margin-bottom: 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.policy-section:hover {
  border-color: var(--sage-light);
  box-shadow: 0 12px 40px rgba(90, 128, 104, 0.1);
}

.policy-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.policy-section p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 12px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
}

.policy-section ul li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid var(--cream-dark);
}

.policy-section ul li:last-child {
  border-bottom: none;
}

.policy-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--sage);
  border-radius: 50%;
}

.policy-section ul li strong {
  color: var(--deep);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 600px) {
  .policy-section {
    padding: 28px 20px;
  }
}
