section#pricing-hero {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding-inline: 2rem;
  background-color: var(--light-blue);
  color: var(--off-white);
  padding-bottom: 3rem;

  border-radius: 50% / 0 0 40px 40px;
  box-shadow: 0 8px 10px #333;
}

section#pricing-hero h1 {
  color: var(--dark-blue);
}

section#pricing-table {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  width: 90%;
  margin: 1rem auto 0 auto;
}

section#pricing-table div {
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

section#pricing-table div h2 {
  font-size: 1.2rem;
  text-decoration: underline;
  color: var(--dark-blue);
}

section#pricing-table div p strong {
  color: var(--light-blue);
}

section#pricing-table div.call-us-div {
  margin-top: 2rem;
  align-self: center;
  background: none;
  box-shadow: none;
}

section#pricing-table div a.pricing-call-us {
  display: block;
  width: 100%;
  max-width: 320px; /* keeps it from getting too huge on tablets */
  margin: 0 auto;
  text-align: center;
  background-color: var(--light-blue);
  color: var(--off-white);
  padding: 1.2rem 2rem;
  border-radius: 12px;
  font-size: 1.4rem;
  box-shadow: -2px 2px 8px #333;
}

section#pricing-disclaimer {
  font-size: 0.8rem;
  text-align: center;
  color: #666;
}
