/* ── CONTENT ── */
.content-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 5% 80px;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-mid);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-section h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.2em;
  background: var(--green-mid);
  border-radius: 2px;
  flex-shrink: 0;
}

.policy-section p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.policy-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.policy-section ul li {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.policy-section ul li::before {
  content: '🌿';
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  top: 4px;
}

.policy-section a {
  color: var(--green-mid);
  text-decoration: none;
  font-weight: 700;
}
.policy-section a:hover { text-decoration: underline; }

.effective-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  color: var(--text-sub);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 48px;
}

.contact-box {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 16px;
}

.contact-box p {
  margin-bottom: 6px !important;
}

.divider {
  border: none;
  border-top: 2px solid var(--border);
  margin: 48px 0;
}