* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper {
  display: flex;
  width: 90%;
  max-width: 900px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
}

.sidebar {
  width: 30%;
  background-color: #2c3e50;
  color: white;
  padding: 20px;
  text-align: center;
}

.sidebar .logo {
  max-width: 80%;
  height: auto;
  margin-bottom: 20px;
}

.business-info h3 {
  margin-bottom: 10px;
}

.business-info p {
  margin-bottom: 5px;
}

.container {
  width: 70%;
  padding: 30px;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

form label {
  display: block;
  margin: 10px 0 5px;
}

form input,
form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: #218838;
}

#responseMessage {
  margin-top: 10px;
  text-align: center;
}
