/* Contact with Background */
.contact-bg {
  background: url('https://source.unsplash.com/1600x900/?tech,office') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.contact-bg form {
  max-width: 500px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-bg form input, .contact-bg form textarea {
  padding: 10px;
  border-radius: 5px;
  border: none;
}

.contact-bg form button {
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: #000;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}