* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Inter, sans-serif;
  color: #333;
  line-height: 1.6;
  font-size: 13px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Inter, sans-serif;
  font-weight: 500;
  color: #333;
  margin: 0 0 8px;
}

h1 {
  font-size: 22px;
  font-weight: normal;
  text-transform: uppercase;
}

h2 {
  font-size: 18px;
  font-weight: normal;
  text-transform: uppercase;
  margin-top: 8px;
  border-bottom: 1px dotted #dcdcdc;
}

h3 {
  font-size: 16px;
}

h4 {
  font-size: 14px;
}

p,
ul,
ol {
  margin: 0 0 12px;
  padding: 0;
}

ul {
  margin-left: 16px;
}

a {
  color: #333;
  text-decoration: none;
}

#content {
  max-width: 210mm;
  margin: 40px auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: grid;
  min-height: 297mm;
  padding: 40px;
}

.contacts {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}

@media print {
  @page {
    size: A4;
  }

  body {
    background-color: white;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  #content {
    margin: 0;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    min-height: auto;
  }
}