body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #b788e4;
  margin: 0;
  display: flex;
  justify-content: center;
  padding: 40px 12px;
}

.form-container {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card {
  margin-bottom: 30px;
}

h3, h4 {
  margin: 20px 0 10px;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.option {
  padding: 12px 24px;
  border-radius: 15px;
  border: 2px solid #ff9b6a;
  background-color: white;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.option.selected {
  background-color: #ffe4d5;
}

input[type="range"] {
  width: 100%;
  margin-top: 10px;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}

.highlight {
  color: #ff7200;
  font-weight: bold;
}

.budget-value {
  font-weight: bold;
  padding: 5px 10px;
  border: 2px solid black;
  display: inline-block;
  margin-top: 5px;
}

input[type="text"] {
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #ccc;
}

.submit-wrapper {
  text-align: center;
  margin-top: 30px;
}

.submit-btn {
  padding: 15px 50px;
  background-color: white;
  border: 2px solid black;
  font-size: 18px;
  border-radius: 18px;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background-color: black;
  color: white;
}

.hidden {
  display: none;
}

.visible {
  opacity: 1;
   transition: opacity 0.5s ease;
}

#thankYouMessage {
  font-size: 1.4rem;
  font-weight: 500;
  padding: 20px;
  text-align: center;
  color: #000000;
}

