/* Styles for the rental agreement document. Used by:
 *   - /rental-agreement.html (standalone page)
 *   - The agreement modal in /reserve.html
 * Both inject window.RENTAL_AGREEMENT_HTML; both load this stylesheet
 * so the agreement reads consistently across surfaces. */

.agreement-doc {
  max-width: 700px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
}
.agreement-doc h1 {
  text-align: center;
  font-size: 22px;
  margin: 0 0 24px 0;
  color: var(--accent-dark);
}
.agreement-doc h2 {
  font-size: 15px;
  margin: 20px 0 6px 0;
  color: var(--accent-dark);
}
.agreement-doc section {
  margin-bottom: 14px;
}
.agreement-doc p {
  margin: 0 0 8px 0;
}
.agreement-doc-foot {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}
.agreement-doc-foot p { margin: 0; }
.agreement-doc-foot a { color: var(--text-muted); }
