/* Contact Form Styles */
#contact-section {
  background-color: rgba(255, 4, 0, 0.6);
  /* Semi-transparent black */
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  /* Add some shadow for depth */
}

.form-group {
  margin-bottom: 1em;
}

label {
  display: block;
  margin-bottom: 0.5em;
  color: gold;
  /* Gold text */
}

input,
textarea,
select {
  width: 100%;
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: red;
  /* Red background */
  color: white;
  /* White text */
  padding: 0.5em 1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  /* Gold on hover */
  background-color: gold;
  color: black;
}