/* Privacy Policy page styles */
.internal-hero { max-width: 900px; text-align: center; }

.legal-content { max-width: 800px; margin: 0 auto; padding: 2rem 3rem 6rem; }
.legal-content h2 { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; margin: 3rem 0 1rem; color: var(--navy); }
.legal-content p, .legal-content li { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 1.25rem; }
.legal-content ul { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: 0.9rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(52, 61, 110, 0.08);
}
.policy-table thead tr { background-color: #343d6e; color: #ffffff; }
.policy-table th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-family: var(--sans);
  letter-spacing: 0.02em;
}
.policy-table td {
  padding: 12px 18px;
  vertical-align: top;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(52, 61, 110, 0.1);
  line-height: 1.55;
}
.policy-table tbody tr:last-child td { border-bottom: none; }
.policy-table tbody tr:nth-child(even) { background-color: rgba(52, 61, 110, 0.04); }
.policy-table tbody tr:hover { background-color: rgba(200, 88, 20, 0.06); }
.policy-table td:first-child { width: 60%; }
.policy-table td:last-child { width: 40%; color: #343d6e; font-weight: 500; }

@media (max-width: 860px) {
  .legal-content { padding: 0 1.5rem 4rem; }
  .policy-table, .policy-table thead, .policy-table tbody,
  .policy-table th, .policy-table td, .policy-table tr { display: block; }
  .policy-table thead { display: none; }
  .policy-table td { padding: 0.5rem 0; border-bottom: none; width: auto !important; }
  .policy-table td:first-child { font-weight: 500; color: var(--text); padding-top: 1rem; border-top: 1px solid var(--border); }
  .policy-table td:last-child { color: #343d6e; }
}
