/* Global styles */
body {
  font-family: Arial, sans-serif;
  margin: 40px;
  background-color: #f1f5f9;
  color: #333;
}

/* Header styles */
header {
  text-align: center;
  margin-bottom: 40px;
}

h1 {
  font-size: 2.5rem;
  color: #14532d;
}

p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Contact form styles */
form {
  max-width: 500px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

label {
  font-weight: bold;
}

input, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

button {
  background-color: #15803d;
  color: white;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #166534;
}

#response-msg {
  text-align: center;
  margin-top: 15px;
  font-style: italic;
  color: green;
}
