#contact {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 20px;
  width: 100%;
}
#contact .title {
  color: blue;
  font-size: 20px;
}
#contact #emailLink {
 text-decoration: underline;
}

#contact h2 {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 20px;
  color: white;
}

#form {
  width: 100%;
  max-width: 500px;
  margin: auto;
  padding: 20px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: black;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #555;
}
.contactValue {
  color: white;
}

input, textarea, button {
  padding: 10px;
  margin-top: 5px; /* Reduced spacing between fields */
  width: 90%; 
  min-width: 250px;
  height: 50px;
  border-radius: 5px;
  margin-left: 30px;
  margin-right: 30px;
  border: none;
  background-color: #333;
  color: #fff;
  font-size: 16px;
  transition: background-color 0.3s;
  box-sizing: border-box;
}

button {
  width: 90%; /* Keeping button width consistent */
  background-color: blue;
  cursor: pointer;
  margin-bottom: 20px;
  font-size: 20px;
}

button:hover {
  background-color: #0101a2;
}

textarea {
  height: 100px; /* Fixed height for textarea */
}

#subject, #message {
  margin-top: 5px; /* Reduced top margin for these elements */
  text-align: left;
  color: white;
  font-size: 16px;
  padding: 15px 30px;
  border: 1px solid #c59655;
}

#name,
#tel {
  margin-top: 30px;
  text-align: left;
  color: white;
  font-size: 16px;
  padding: 15px 30px;
  border: 1px solid #c59655;
}
