.lead-form form {
  max-width: 800px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lead-form .form-row {
  display: flex;
  gap: 20px;
}

.lead-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lead-form label {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
  color: #333;
}

.lead-form input,
.lead-form textarea {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: #be2673;
  box-shadow: 0 0 0 3px rgba(190,38,115,0.15);
  outline: none;
}

.lead-form textarea {
  min-height: 150px;
  max-height: 400px;
  resize: vertical;
}

.lead-form button {
  background: #be2673;
  color: #fff;
  border: none;
  padding: 14px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  width: 100%;
}

.lead-form button:hover {
  background: #911755;
  transform: translateY(-1px);
}

.lead-form button:active {
  transform: translateY(0);
}

@media (max-width: 767px) {
  .lead-form .form-row {
    flex-direction: column;
  }
}
