body {
  font-family: system-ui, Arial, sans-serif;
  background: #f3f4f6;
}

.page {
  max-width: 900px;
  margin: 20px auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
}

.header {
  display: flex;
  gap: 20px;
  align-items: center;
}

.logo {
  width: 90px;
}

h1 {
  margin: 0;
  font-size: 22px;
}

.accent-line {
  border: none;
  border-top: 3px solid #b30000;
  margin: 15px 0 25px;
}

.intro {
  font-size: 14px;
  margin-bottom: 20px;
}

label {
  font-weight: 600;
}

input, textarea {
  width: 100%;
  padding: 7px;
  margin-top: 5px;
}

textarea {
  min-height: 90px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}

.table th {
  background: #f5f5f5;
}

.table th, .table td {
  border: 1px solid #ccc;
  padding: 6px;
  font-size: 13px;
  text-align: center;
}

.table th:first-child,
.table td:first-child {
  text-align: left;
}

.button-row {
  margin-top: 25px;
}

button {
  padding: 10px 18px;
  background: #005a9c;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

footer {
  font-size: 10px;
  color: #555;
  margin-top: 40px;
}

pdf-footer {
  font-size: 10px;
  line-height: 1.3;
  color: #555;
  margin-top: 40px;
  padding-top: 10px;
  border-top: 1px solid #ccc;
  text-align: center;
}

