* {
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #fef8f2;
  color: #444;
  line-height: 1.6;
}
header {
  background: #d6a62a;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
header h1 {
  margin: 0;
  font-size: 2.8rem;
  letter-spacing: 2px;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
header p {
  margin-top: 10px;
  font-size: 1.2rem;
  font-style: italic;
  color: #f0e6c8;
}
.container {
  max-width: 720px;
  margin: 40px auto;
  padding: 0 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
h2 {
  color: #b34728;
  border-bottom: 2px solid #d6a62a;
  padding-bottom: 6px;
  margin-top: 40px;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 1px;
}
ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.1rem;
  font-weight: 500;
  color: #555;
  transition: background 0.2s ease;
}
li:last-child {
  border-bottom: none;
}
li:hover {
  background: #fff7dc;
  cursor: default;
}
.price {
  font-weight: 700;
  color: #b34728;
}
.footer {
  text-align: center;
  padding: 30px 20px;
  background: #d6a62a;
  color: #fff;
  font-size: 1rem;
  border-radius: 0 0 12px 12px;
  box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.3);
}
.footer p {
  margin: 6px 0;
}
a.call,
a.message {
  display: inline-block;
  margin: 15px 15px 0 0;
  padding: 12px 28px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: background 0.3s ease;
}
a.call {
  background: #8a5d13;
}
a.call:hover {
  background: #b06c00;
}
a.message {
  background: #3b5998;
}
a.message:hover {
  background: #2d4373;
}
@media (max-width: 480px) {
  header h1 {
    font-size: 2rem;
  }
  .container {
    margin: 20px 15px;
    padding: 15px;
  }
  li {
    font-size: 1rem;
  }
}
