body {
  font-family: 'Montserrat', sans-serif;
  color: #222;
  background-color: #fff;
  margin: 0;
  text-align: center;
}

main {
  padding: 20px;
}

.price-hero {
  margin: 20px auto;
}

.price-hero h1 {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 20px;
}

.price-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  padding: 0 10px;
}

.category {
  margin-bottom: 40px;
}

.category h2 {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 10px;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

td {
  padding: 8px 4px;
  border-bottom: 1px solid #eee;
}

td.price {
  text-align: right;
  font-weight: 500;
}

@media (max-width: 768px) {
  .price-hero h1 {
    font-size: 1.5em;
  }

  .category h2 {
    font-size: 1.2em;
  }

  td {
    font-size: 0.95em;
    padding: 6px 2px;
  }

  table {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .price-hero h1 {
    font-size: 1.2em;
  }

  .category h2 {
    font-size: 1em;
  }

  td {
    font-size: 0.9em;
  }
}
