body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Proxima Nova", Montserrat, Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.hire-calculator {
  max-width: 520px;
  width: 90%;
  margin: 50px auto;
  text-align: center;
}

h2 {
  margin-bottom: 20px;
  color: #000;
}

.toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.toggle button {
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  background: #eee;
  font-weight: 600;
  color: #000;
  transition: 0.2s;
  white-space: nowrap;
  border-radius: 6px;
  flex: 1;
}

.toggle button.active {
  background: #d82e27;
  color: #fff;
}

input[type=range] {
  width: 100%;
  margin: 20px 0;
  accent-color: #d82e27;
}

.labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #555;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.labels span {
  min-width: 14%;
  text-align: center;
}

.output {
  background: #000;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.price {
  font-size: 28px;
  font-weight: 600;
  color: #d82e27;
}

.sub {
  font-size: 14px;
  opacity: 0.8;
}

.savings {
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
}

.book-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 25px;
  background-color: #d82e27;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.2s;
}

.book-btn:hover {
  background-color: #b52622;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .toggle {
    flex-direction: column;
  }

  .toggle button {
    width: 100%;
    margin-bottom: 8px;
  }

  .labels span {
    font-size: 11px;
  }

  .price {
    font-size: 24px;
  }

  .output {
    min-height: 160px;
    padding: 15px;
  }
}