/* Shared Print Layout Styles */

@page {
  size: letter;
  margin: 0.4in;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 8.5pt;
  line-height: 1.2;
  color: #1f2937;
  background: white;
}

.container {
  max-width: 7.7in;
  margin: 0 auto;
}

header {
  text-align: center;
  margin-bottom: 0.15in;
  border-bottom: 2px solid #0055BF;
  padding-bottom: 0.08in;
}

header h1 {
  font-size: 16pt;
  font-weight: 800;
  color: #0055BF;
  margin-bottom: 0.02in;
}

header .tagline {
  font-size: 10pt;
  color: #4b5563;
  font-weight: 600;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15in;
  margin-bottom: 0.12in;
}

.full-width {
  margin-bottom: 0.12in;
}

h2 {
  font-size: 11pt;
  font-weight: 700;
  color: #0055BF;
  margin-bottom: 0.06in;
  border-bottom: 1.5px solid #FFD700;
  padding-bottom: 0.03in;
}

h3 {
  font-size: 9pt;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.04in;
}

p {
  margin-bottom: 0.05in;
}

ul {
  margin-left: 0.12in;
  margin-bottom: 0.05in;
}

li {
  margin-bottom: 0.02in;
  font-size: 8pt;
}

strong {
  font-weight: 700;
}

.text-small {
  font-size: 7.5pt;
}

/* Highlight Boxes */
.highlight-box {
  padding: 0.06in;
  margin-bottom: 0.1in;
  border-radius: 3px;
}

.blue-box,
.highlight-box:not(.yellow-box):not(.green-box):not(.red-box) {
  background: #eff6ff;
  border-left: 3px solid #0055BF;
}

.yellow-box {
  background: #fef3c7;
  border-left: 3px solid #FFD700;
}

.green-box {
  background: #d1fae5;
  border-left: 3px solid #00A550;
}

.red-box {
  background: #fee2e2;
  border-left: 3px solid #D01012;
}

/* Steps */
.steps {
  display: grid;
  gap: 0.08in;
}

.step {
  text-align: center;
}

.step-number {
  display: inline-block;
  background: #0055BF;
  color: white;
  border-radius: 50%;
  font-weight: 700;
}

.step p {
  font-weight: 600;
}

/* Footer */
footer {
  margin-top: 0.12in;
  padding-top: 0.1in;
  border-top: 1.5px solid #e5e7eb;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.15in;
  align-items: center;
}

.contact-info h3 {
  font-size: 10pt;
  color: #0055BF;
  margin-bottom: 0.04in;
}

.contact-info p {
  font-size: 8.5pt;
  margin-bottom: 0.02in;
}

@media print {
  body {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}
