/* ========== PRIVACY POLICY PAGE ========== */
.privacy-header { margin-bottom: 5rem; text-align: left; }

.privacy-content-card {
  background: var(--white);
  padding: 5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(6,51,43,0.04);
  margin-bottom: 6rem;
}

.privacy-section { margin-bottom: 3.5rem; }

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

.privacy-section h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-green);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.privacy-section h3 .icon { color: var(--primary-green); font-size: 1.4rem; }

.privacy-section p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.privacy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 0.5rem;
}

.privacy-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.privacy-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary-green);
  border-radius: 50%;
  flex-shrink: 0;
}

.privacy-footer {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(6,51,43,0.08);
  text-align: center;
}

.privacy-footer p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.privacy-footer a { color: var(--primary-green); font-weight: 700; text-decoration: none; transition: color 0.2s ease; }
.privacy-footer a:hover { color: var(--light-green); text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
  .privacy-content-card { padding: 3rem; }
  .privacy-header { margin-bottom: 3rem; }
}

@media (max-width: 580px) {
  .privacy-content-card { padding: 2rem; }
  .privacy-section h3 { font-size: 1.25rem; }
  .privacy-section p { font-size: 0.92rem; }
}
