/* Duration Health Legal Pages Stylesheet */
/* Basic CSS for static HTML served from S3 */

:root {
  --bg: #ffffff;
  --fg: #111111;
  --muted: #555555;
  --accent: #0a0a0a;
  --border: #e5e7eb;
  --focus: #1d4ed8;
  --maxw: 56rem;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding: 2rem 1rem;
}

/* Container and Grid System */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}

.col-md-3,
.col-md-9 {
  padding: 0 0.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-3 {
    width: 25%;
  }
  
  .col-md-9 {
    width: 75%;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1, .h1 {
  font-size: 2rem;
}

h2, .h2, .display-4, .display-5 {
  font-size: 1.75rem;
  color: var(--accent);
}

h3, .h3 {
  font-size: 1.5rem;
}

h4, .h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--focus);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover, a:focus {
  outline: none;
  opacity: 0.8;
}

strong, b {
  font-weight: 600;
}

em, i {
  font-style: italic;
}

u {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Microsoft Word Style Classes */
.MsoNormal,
.MsoBodyText,
.MsoTitle {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.MsoTitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.MsoTableGrid {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.MsoTableGrid td {
  border: 1px solid var(--border);
  padding: 0.75rem;
  vertical-align: top;
}

.MsoTableGrid tr:first-child td {
  background: #f9fafb;
  font-weight: 600;
}

/* Utility Classes */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mt-5 { margin-top: 3rem; }
.my-auto { margin-top: auto; margin-bottom: auto; }

/* Lists */
ul, ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

/* Alignment */
[align="center"],
[style*="text-align:center"],
[style*="text-align: center"] {
  text-align: center;
}

[style*="text-align:justify"],
[style*="text-align: justify"] {
  text-align: justify;
}

/* Indentation */
[style*="text-indent"] {
  text-indent: 2rem;
}

[style*="margin-left:.5in"],
[style*="margin-left: .5in"] {
  margin-left: 2rem;
}

[style*="margin-left:.75in"],
[style*="margin-left: .75in"] {
  margin-left: 3rem;
}

/* Footer for Legal Pages */
footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 767px) {
  body {
    padding: 1rem;
  }
  
  h1, .h1 {
    font-size: 1.5rem;
  }
  
  h2, .h2, .display-4, .display-5 {
    font-size: 1.35rem;
  }
  
  h3, .h3 {
    font-size: 1.2rem;
  }
  
  .row {
    display: block;
  }
  
  .mt-5 {
    margin-top: 1.5rem;
  }
  
  .MsoTableGrid {
    font-size: 0.875rem;
  }
}

/* Print Styles */
@media print {
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  a {
    color: inherit;
    text-decoration: underline;
  }
  
  .container {
    max-width: 100%;
  }
}