@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background-color: #fff;
  color: #000;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

h1 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
}

h2 {
  font-size: 14px;
  margin: 20px 0 3px;
  font-weight: bold;
  text-transform: uppercase;
}

h3 {
  font-size: 13px;
  margin: 10px 0 2px;
  font-weight: normal;
}

p, li {
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

ul {
  margin: 5px 0 10px 20px;
  padding-left: 0;
}

a {
  color: inherit;
  text-decoration: none;
  pointer-events: auto;
  cursor: pointer;
}

a:hover {
  text-decoration: underline;
  color: #0056b3;
}

strong {
  font-weight: bold;
}

section {
  margin: auto;
  padding: 0;
}

.container {
  width: 8.5in;
  min-height: 11in;
  margin: auto;
  padding: 0;
  box-sizing: border-box;
}

.contact {
  text-align: center;
  font-size: 12.5px;
  margin-bottom: 5px;
  color: #000;
}

.tagline {
  font-size: 13px;
  font-weight: normal;
  margin-top: 5px;
}

.visitor-counter {
  font-size: 12px;
  color: #555;
  text-align: center;
  margin-top: 20px;
}

@media print {
  h2 {
    margin: 10px 0 2px;
  }

  p, li {
    font-size: 12px;
    line-height: 1.35;
    margin: 0;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  section {
    margin: auto;
    padding: 0;
  }

  .container {
    width: 8.5in;
    min-height: 11in;
    margin: auto;
    padding: 0;
    box-shadow: none;
  }

  .contact {
    margin-bottom: 12px;
  }

  .visitor-counter {
    display: none;
  }
  
}