/* Contact Form Styles */
.contact-form {
  background-color: #2c2c2c; /* dark background to contrast with white text */
  padding: 20px;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  font-size: 13px;
  color: white;
  font-family: Arial, sans-serif;
}

.contact-form h3 {
  font-size: 1.17em; /* same as h3 default */
  margin-bottom: 15px;
  color: white;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  color: white;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #444;
  color: white;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}

.contact-form button {
  background-color: #007BFF;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #017c84;
}
