body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  margin: 0; padding: 0;
  direction: rtl;
  color: #333;
}
.container {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  border-radius: 8px;
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
h1 {
  text-align: center;
  margin-bottom: 10px;
  color: #28a745;
}
.price-range {
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  color: #555;
}
.progress-container {
  background-color: #ddd;
  border-radius: 50px;
  height: 12px;
  margin-bottom: 25px;
  overflow: hidden;
}
.progress-bar {
  background-color: #28a745;
  height: 12px;
  width: 0%;
  transition: width 0.4s ease;
}
.step {
  display: none;
}
.step-active {
  display: block;
}
.options label {
  display: block;
  margin: 12px 0;
  cursor: pointer;
  user-select: none;
  font-size: 1.1em;
}
.options input[type="radio"],
.options input[type="checkbox"] {
  margin-left: 10px;
  transform: scale(1.3);
  cursor: pointer;
}
button {
  background-color: #28a745;
  border: none;
  color: white;
  padding: 10px 22px;
  font-size: 1em;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;
  margin-left: 10px;
}
button:hover {
  background-color: #218838;
}
textarea {
  width: 100%;
  resize: vertical;
  padding: 10px;
  font-size: 1em;
  border-radius: 6px;
  border: 1px solid #ccc;
}
select, input[type="email"], input[type="date"], input[type="time"] {
  width: 100%;
  padding: 8px;
  font-size: 1em;
  margin: 6px 0 15px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}
label[for] {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}
.hidden {
  display: none;
}
#thankYouMessage {
  text-align: center;
}