.price-section {
  text-align: center;
  padding: 3rem 1rem;
}

.price-section h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin: 2rem auto 2rem;
  text-transform: uppercase;
  margin-bottom: 3.3rem;
}

.price-section p {
  font-size: 0.75rem;
  font-weight: 700;
  color: #000;
  max-width: 600px;
  margin: 0 auto 2rem;
  letter-spacing: 0.05em;
}

.price-table {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  border-collapse: collapse;
  background: transparent;
  font-family: 'Open Sans', sans-serif;
}

.price-table th,
.price-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  
  font-size: 0.9rem;
  color: #1a1a1a;
}

.price-table thead {
  background: none;
  border-bottom: 2px solid #000;
}

.price-table th {
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.price-table tbody tr:hover {
  background: none;
}

th.divider {
  color: #fffbfb;
  font-weight: normal; /* optional */
}

@media (max-width: 600px) {
  .price-table {
    width: 100%;
    border-collapse: collapse;
    border-bottom: none;
  }

  th.divider {
  display: none
  }

  .price-table thead {
    display: none;
  }

  .price-table tbody,
  .price-table tr {
    display: block;
    border-radius: 0%;
    width: 100%;
  }

  .price-table tr {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    padding: 1.2rem;
    background: #fff;
    border-radius: 0%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  .price-table td {
  display: block;
  width: 100%;
  align-self: auto;
  text-align: left;
  padding: 0px 0px;
  padding-right: 3rem;
  margin: 0;
  }


  .price-table .label {
    display: block;

    font-weight: bold;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0.4rem;
    letter-spacing: 0.03em;
  }

  .price-table .value {
    display: block;
    font-size: 1rem;
    color: #1a1a1a;
  }
}

@media (min-width: 601px) {
  .price-table .label {
    display: none;
  }
}
