
/* GLOBAL */
* {
  box-sizing: border-box;
  font-family: Roboto, Arial, sans-serif;
  color: #0f172a;
}

body {
  background: #fff;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

/* HEADER */
.header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.logo img {
  width: 120px;
  height: auto;
  display: block;
}

/* COMPANY INFO */
.company-info {
  margin-left: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.company-name {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  color: #0C2747;
}

.company-meta,
.company-contact {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

/* SECTION SPACING */
section {
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}

section:last-of-type {
  border-bottom: none;
}

/* HEADINGS */
h2 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #0C2747;
  font-weight: 700;
}

/* PARAGRAPHS */
section p {
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}

/* LISTS */
section ul {
  margin: 0;
  padding-left: 16px;
}

section ul li {
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 6px;
}

section ul li:last-child {
  margin-bottom: 0;
}

/* FOOTER */
footer {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}

/* DOWNLOAD BUTTON */
.download-btn {
  background: #0C2747;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 16px;
  transition: background 0.2s ease;
}

.download-btn:hover {
  background: #10345f;
}

/* PRINT MODE — ONE PAGE OPTIMIZED */
@media print {

  @page {
    margin: 0.4in;
  }

  body {
    padding: 0;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .download-btn,
  nav,
  .no-print,
  #modeToggle {
    display: none !important;
  }

  .header {
    gap: 12px;
    margin-bottom: 10px;
  }

  .logo img {
    width: 110px !important;
  }

  .company-name {
    font-size: 22px !important;
  }

  .company-meta,
  .company-contact {
    font-size: 13px !important;
    line-height: 1.35;
  }

  section {
    margin-top: 16px;
    padding-bottom: 8px;
  }

  h2 {
    font-size: 15px !important;
    margin-bottom: 4px;
  }

  section p,
  section ul li {
    font-size: 13px !important;
    line-height: 1.35;
  }

  footer {
    margin-top: 16px;
    font-size: 12px;
  }
}