body {
  font-family: sans-serif;
  line-height: 1.8;
  background-color: #f9f9f9;
  color: #333;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
}

.hero {
  background: linear-gradient(to right, #004d40, #00796b);
  color: white;
  padding: 40px 20px;
  margin-bottom: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
}

.menu-section {
  text-align: center;
  margin-bottom: 40px;
}

.menu-section img {
  width: 100%;
  max-width: 1024px;
  border: none;
  margin-bottom: 20px;
}

.menu-info {
  background-color: #e0f2f1;
  display: inline-block;
  text-align: left;
  padding: 10px;
  border-left: 5px solid #ff7300;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  max-width: 100%;
}

.menu-info h2 {
  color: #00695c;
  margin-top: 0;
}

.split-layout {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.split-left img {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  max-width: 400px;
}

.split-right {
  flex: 1;
  min-width: 300px;
}

.section-heading {
  background-color: #388e3c;
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.4em;
}


.price-banner {
  background-color: #1942c9;
  color: white;
  font-weight: bold;
  font-size: 1.4em;
  text-align: center;
  padding: 10px;
  margin-top: 15px;
  border-radius: 5px;
  font-family: 'Arial Black', Gadget, sans-serif;
}

.app-images {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.app-images img {
  width: 49%;
  height: auto;
  border: 1px solid #ccc;
}

.app-section {
  background-color: #ebebeb;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 40px;

}

.app-section h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

footer {
  text-align: center;
  font-size: 0.9em;
  color: #777;
  margin-top: 50px;
}

