body {
  margin: 0;
  padding: 0;
}

.hero-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  margin: 0 auto;
  max-width: 600px; /* or whatever fits your design */
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}



h1, h2, h3 {
  text-align: center;
  font-family: 'Lato', sans-serif;
}

.spacer {
  margin-top: 3rem;
}
.spacer-lg {
  margin-top: 6rem;
}

.btn-success {
  background-color: var(--bs-success);
  border-color: var(--bs-success);
}

.btn-success:hover {
  background-color: var(--bs-success disabled);
}


ul.list-unstyled li {
  margin-bottom: 1rem; /* increase spacing */
}



table {
  border-collapse: collapse;
  border-top: none !important;
}

table thead {
  display: none; /* hides the header row as before */
}

/* Remove all lines and spacing from tables */
table,
table th,
table td,
table tr,
table thead,
table tbody {
  border: none !important;
  border-collapse: collapse !important;
  box-shadow: none !important;
}

table.table-borderless tbody tr td {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

table.table-borderless td span {
  margin-left: -3rem; /* the negative margin pulls text left */
  display: inline-block;
}

.pricing-cards-container {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.pricing-card {
  flex: 0 0 90%;
  scroll-snap-align: start;
  border: 2px solid #dee2e6;
  border-radius: 1rem;
  padding: 1.5rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center; /* 👈 center all text */
}

.pricing-card h3 {
  font-size: 1.75rem; /* 👈 increase title size */
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
}




/* Navbar */




html {
  font-size: 16px !important;
}

.navbar-brand {
  color: rgb(255, 255, 255) !important;
  padding-bottom: 0px !important;
  padding-top: 0px !important;
}

.navbar-collapse {
  background-color: var(--bs-primary) !important;
}

