body {
  font-family: 'Prompt', sans-serif;
  margin: 0;
  background: linear-gradient(to right, #fff8f1, #fefefe); /* พีชอ่อนถึงครีม */
  color: #5d4037; /* น้ำตาลเข้ม */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  padding: 80px 20px;
  text-align: center;
  flex: 1;
  background-color: #fffaf4; /* ครีมอ่อน */
}

.banner-image {
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin: 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border: 1px solid #ffe0b2; /* ขอบพีชอ่อน */
}

footer {
  text-align: center;
  padding: 16px;
  background-color: #ffe0b2; /* พีชอ่อน */
  color: #6d4c41; /* น้ำตาลกลาง */
  font-size: 14px;
  border-top: 1px solid #d7ccc8; /* ขอบน้ำตาลอ่อน */
}