
body {
  font-family: 'Times New Roman', Arial, sans-serif;
  margin: 0;
  background-color: #ffffff;
  color: #000;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(90deg, #e7b220, #f1c40f, #e67e22);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  transition: all 0.3s ease;
}
.gradient-text:hover {
  text-shadow: 0 0 10px #f1c40f, 0 0 20px #e7b220, 0 0 30px #e67e22;
  transform: scale(1.05);
}

/* Box shadow */
.box-shadow {
  background-color: #fbeeb8;
  padding: 15px 20px;
  text-align: center;
  box-shadow: 0px 5px 20px rgba(0,0,0,0.2);
  border-radius: 12px;
  margin: 20px auto;
  max-width: 90%;
}

/* Scroll text animation */
.scroll-text {
  display: inline-block;
  animation: scroll-left 10s linear infinite;
  white-space: nowrap;
}
@keyframes scroll-left {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Buttons */
.button {
  background-color: #e7b220;
  color: #fff;
  padding: 12px 25px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.button:hover {
  background-color: #f1c40f;
  box-shadow: 0px 5px 15px rgba(231,178,32,0.6);
  transform: scale(1.05);
}

/* Section styling */
.section {
  padding: 40px 20px;
  text-align: center;
}

/* List styling */
ul.custom-list {
  list-style: none;
  padding-left: 0;
}
ul.custom-list li {
  font-size: 20px;
  color: #000;
  padding: 8px 0 8px 25px; /* เผื่อพื้นที่ด้านซ้าย */
  position: relative;
}
ul.custom-list li::before {
  content: "✔";
  color: #e7b220;
  position: absolute;
  left: 0; /* เข้าใกล้ข้อความ */
  top: 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #fff8e5;
  font-size: 18px;
}
footer a {
  color: #e7b220;
  text-decoration: none;
  font-weight: bold;
}
footer a:hover {
  text-decoration: underline;
}
