body {
  font-family: Arial, sans-serif;
  background: #f0f4f8;
  padding: 20px;
  display: flex;
  justify-content: center;
}
/* Logo Styling */
.logo {
  display: block;
  margin: 0 auto 15px auto;
  max-width: 150px;
  height: auto;
}

.container {
  max-width: 500px;
  width: 100%;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

h2 {
  text-align: center;
  margin-bottom: 15px;
}

input,
textarea,
button {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background: #28a745;
  color: white;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #218838;
}

.message {
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
}

#map {
  height: 300px;
  margin-top: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
