
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f4f4;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text h1 {
  margin-bottom: 5px;
}

.contact {
  font-size: 14px;
  margin: 5px 0;
}

.address {
  font-size: 13px;
  color: #555;
}

.photo img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #000;
  padding: 6px;
}
.container {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 30px;
}

h1 {
  text-align: center;
  margin-bottom: 5px;
}

h2 {
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
  margin-top: 30px;
}

.section {
  margin-top: 15px;
}

.item {
  margin-bottom: 15px;
}

.item-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

ul {
  margin-top: 5px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.small-text {
  font-size: 14px;
}

.print {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.print .qr {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.signature {
  text-align: right;
  font-size: 14px;
}

.signature-line {
  margin-top: 40px;
  border-top: 1px solid #000;
  width: 200px;
  text-align: center;
  padding-top: 5px;
}

@media print {
  body {
    background: white;
  }
}