body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fffef9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 5px 0;
}

/* Header */
header {
  background-color: #fff;
  border-bottom: 2px solid #eee;
  padding: 20px 0;
}

.header-flex {
  display: flex;
  align-items: center;
}

.logo {
  height: 80px;
  margin-right: 20px;
}

.header-text h1 {
  margin: 0;
  font-size: 1.2em;
  color: #2c3e50;
}

.slogan {
  font-style: italic;
  color: #888;
  margin: 5px 0 0 0;
}

.logo {
  height: 90px;
  margin-right: 10px;
}

.slogan {
  font-style: italic;
  color: #888;
}

nav.nav {
  background-color: #e67e22;
  text-align: center;
  padding: 5px;
}

nav.nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

nav.nav a:hover {
  text-decoration: underline;
}

section {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

h2 {
  color: #e67e22;
  font-size: 1em;
}

h3 {
  font-size: 0.8em;
}

h4 {
  font-size: 0.6em;
  font-style: italic;
  color: #e67e22;
}

.menu-items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.menu-items .item {
  flex: 1 1 30%;
  text-align: center;
}

.menu-items img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-top: 10px;
  font-weight: bold;
}

form input,
form textarea {
  padding: 5px;
  margin-top: 5px;
  font-size: 1em;
}

form button {
  margin-top: 10px;
  padding: 10px;
  background-color: #e67e22;
  color: white;
  border: none;
  cursor: pointer;
}

main img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button:hover {
  background-color: #d35400;
}

footer {
  background-color: #f8f8f8;
  text-align: center;
  padding: 8px 0;
  font-size: 0.9em;
  color: #777;
}