/*body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: white;
}
*/

.contact-section {
  display: flex;
  justify-content: center;
  padding: 0;
}

.contact-container {
  width: 100%;
  max-width: 600px;
  background: #00780e;
  padding: 40px;
  border-radius: 12px;
}


.contact-container h1 {
  color:#fff;
  line-height: 1.2em;
}


.contact-container p {
  color: #fff;
}


form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input,
textarea,
select {
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

button {
  background: #000;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

button:hover {
  background: #2ca038;
}

#formResponse {
  margin-top: 10px;
  font-weight: bold;
  color:#fff;
}