body {
  font-family: Lato, sans-serif;
  background: white;
  color: #333;
  margin: 0;
  padding: 20px;
}
.container {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

#dropdownMenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: #f9f9f9;
  border: 1px solid #ccc;
  padding: 0 1em;
}
#dropdownMenu.open {
  max-height: 2000px;
}
#dropdownMenu a {
  display: block;
  margin: 0.5em 0;
  color: #090692;
  text-decoration: none;
  font-size: 120%;
  text-transform: uppercase;
  line-height: 170%;
}
#dropdownMenu img {
  display: block;
  margin: 1em auto;
  max-width: 100%;
  width: 300px;
}
button-menu {
  display: inline-block;
  background: #007BFF;
  color: white;
  padding: 0.6em 1.2em;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 0.5em;
}

h2 {
  color: #007bff;
  text-align: center;
}
.logo {
  padding-top: 5%;
  display: block;
  margin: 10px auto 20px;
  width: 250px;
}
label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}
input[type="text"], input[type="tel"], input[type="number"] {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
th, td {
  text-align: left;
  padding: 10px;
}
th {
  background: #007bff;
  color: white;
}
button {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}
button:hover {
  background: #0056b3;
}