/* === Container Styling === */
.cost-calc-wrapper {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  border: 3px solid #D9D9D9;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
  margin: 30px 0 50px 0;
  font-family: 'Open Sans', sans-serif;
}

/* === Headings === */
.calc-heading {
  font-size: 30px;
  font-weight: 700;
  color: #575756;
  line-height: 1.2;
  margin-bottom: 20px;
}

.calc-subheading {
  font-size: 24px;
  font-weight: 700;
  color: #575756;
  margin-bottom: 10px;
  text-align: left;
}

/* === Labels and Inputs === */
.form-label {
  font-weight: 700;
  font-size: 0.8rem;
  color: #575756;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.hs-form-checkbox-display{
font-size: 0.8rem!important;
}

.form-text {
  font-size: 0.7rem!important;
  color: #575756;
}

/* === Sliders === */
input[type=range] {
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(to right, #b2cc28 0%, #b2cc28 0%, #f3f3f3 0%, #f3f3f3 100%);
  outline: none;
  padding: 1px;
  transition: background 0.3s ease-in-out;
}

input[type=range]::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  background: white;
  border: 4px solid #b2cc28;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  margin-top: -5px;
}

input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: white;
  border: 5px solid #b2cc28;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

/* === Button === */
button.btn-success {
  width: 100%;
  background: #B7CE3F;
  border: 1px solid #B7CE3F;
  height: 49px;
  font-size: 18px;
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
}

/* === Disclaimer === */
.disclaimer p {
  font-size: 13px;
  color: #929292;
  margin-top: 20px;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.2;
}

.disclaimer span {
  font-style: italic;
  font-weight: 400;
}

/* === Results Section === */
#resultsSection {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.8s ease, opacity 0.8s ease;
  font-family: 'Open Sans', sans-serif;
}

#resultsSection.show {
  max-height: 1000px;
  opacity: 1;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
  border: 3px solid #B7CE3F;
  margin-top: 30px;
  overflow: visible;
}

/* === Cost Blocks === */
.list-group-item.costing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  color: #197dbc;
  margin-bottom: 0px;
  padding: 10px 20px;
  font-family: 'Open Sans', sans-serif;
}

.list-group-item.costing strong {
  color: #197DBC;
  font-size: 24px;
  font-weight: 600;
  background: #E8F4FD;
  padding: 11px;
  width: 300px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  border-radius: 5px;
}

#resultsSection .bg-primary {
  background-color: rgba(25, 125, 188, 0.1);
  padding: 15px;
  font-weight: 700;
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
  border-radius: 5px;
  align-items: center;
}

#totalCost {
  background: #197DBC;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  width: 300px;
  font-family: 'Open Sans', sans-serif;
}

/* === Responsive === */
@media (max-width: 768px) {
  .cost-calc-wrapper {
    padding: 15px;
  }

  .list-group-item.costing strong,
  #totalCost {
    width: 100%;
  }

  .list-group-item.costing {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #resultsSection .bg-primary,
  .results-headings {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .calc-subheading {
    text-align: center;
  }

  #resultsSection.show {
    max-height: none;
    height: auto;
    overflow