/* General Styles */
body {
  font-family: 'Helvetica', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #e0f7fa, #b2ebf2);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

@media (max-width: 768px) {
  body {
    padding: 10px;
  }
}

* {
  box-sizing: border-box;
}

.hidden {
  display: none;
}

.form-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 500px;
  max-width: 90%;
}

.form-logo {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 20px;
}

.amount-display-large {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00796b;
  text-align: center;
  margin-bottom: 40px;
}

.question-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #004d40;
  margin-bottom: 25px;
}

input[type="range"] {
  width: 100%;
  margin: 20px 0;
  appearance: none;
  background: #e0f2f1;
  height: 8px;
  border-radius: 5px;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #00796b;
  cursor: pointer;
}

.business-field {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 2px solid #00796b;
  border-radius: 8px;
  margin-bottom: 30px;
  background: #f1f8e9;
}

.business-types {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.business-types button {
  flex: 1;
  padding: 10px;
  font-size: 0.9rem;
  border: none;
  border-radius: 5px;
  background: #e0f2f1;
  color: #004d40;
  cursor: pointer;
  transition: background 0.3s ease;
}

.business-types button:hover,
.business-types button.active {
  background: #00796b;
  color: white;
}

.form-group {
  margin-bottom: 20px;
}

.modern-input {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #e0f7fa;
  transition: box-shadow 0.3s;
}

.modern-input:focus {
  box-shadow: 0 0 8px rgba(0, 150, 136, 0.3);
}

.consent {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 20px;
}

.consent a {
  color: #00796b;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(to bottom, #009688, #004d40);
  color: white;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  margin-top: 10px;
  transition: box-shadow 0.3s;
}

.submit-btn:hover {
  box-shadow: 0 0 10px rgba(0, 150, 136, 0.3);
}
