body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #e9e9e9;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Header styling */
header {
  background-color: #f5a623;
  text-align: center;
  color: white;
  padding: 30px 10px;
  box-shadow: 0 6px 10px rgba(0,0,0,0.4);
}
header h1 {
  margin: 0;
  font-size: 2em;
}
header p {
  margin: 5px 0 0;
  font-size: 1.1em;
}

/* Section titles */
h2 {
  border-bottom: 2px solid #ccc;
  margin: 40px 0 10px 0;
  padding-bottom: 5px;
  color: #333;
}

/* Tables */
table {
  width: 90%;
  margin: 0 auto 30px auto;
  border-collapse: collapse;
  background-color: white;
  border: 1px solid #444;
}

/* Header cells */
th {
  color: white;
  text-align: left;
  padding: 8px;
}

/* Body cells */
td {
  padding: 10px;
  border: 1px solid #aaa;
  vertical-align: top;
}

/* Different table header colors */
.starters th {
  background-color: blue;
}
.main th {
  background-color: teal;
}
.desserts th {
  background-color: #32c6d9;
}

/* Prices */
.price {
  color: red;
  font-weight: bold;
  text-align: right;
}

/* Layout and footer */
section {
  background-color: #f9f9f9;
  margin: 20px auto;
  width: 90%;
  padding: 10px;
}

footer {
  text-align: center;
  font-size: 0.9em;
  color: #666;
  margin-bottom: 20px;
}


table caption {
  text-align: left;
  font-weight: bold;
  padding: 5px;
}
th, td {
  text-align: left;
}
