.contact-section {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
}

.contact-form-card {
  width: 100%;
  max-width: 500px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-card h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

#leadForm input,
#leadForm textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

#leadForm textarea {
  height: 120px;
  resize: none;
}

.btn-success {
  width: 100%;
  background: #00c9a7;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s ease;
}

.btn-success:hover {
  background: #009e86;
}
