* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; background: #f5f5f5; color: #333; }
.header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 15px 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.logo { font-size: 32px; font-weight: 400; letter-spacing: 3px; color: #616161; text-decoration: none; }
.logo:hover { color: #1780d6; }
.header-info { text-align: right; }
.header-info .phone { font-size: 16px; font-weight: 700; color: #1780d6; text-decoration: none; }
.header-info .hours { font-size: 12px; color: #364c75; }
.header-info .subtitle { font-size: 12px; color: #999; }
.btn-pay { display: inline-block; padding: 10px 20px; background: #1780d6; color: #fff; text-decoration: none; font-size: 14px; }
.btn-pay:hover { background: #0f6bb8; }
.container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
h1 { font-size: 28px; margin-bottom: 20px; color: #222; }
h2 { font-size: 22px; margin: 30px 0 15px; }
p { line-height: 1.6; margin-bottom: 15px; }
.content { background: #fff; padding: 40px; min-height: 400px; }
.footer { background: #fff; border-top: 1px solid #eee; padding: 20px; text-align: center; margin-top: 40px; }
.footer nav { margin-bottom: 15px; }
.footer nav a { color: #333; text-decoration: none; margin: 0 10px; font-weight: 700; font-size: 16px; }
.footer nav a:hover { color: #1780d6; }
form { max-width: 500px; }
form label { display: block; margin: 15px 0 5px; }
form input { width: 100%; padding: 10px; border: 1px solid #ddd; margin-bottom: 10px; }
form input[readonly] { background: #f5f5f5; }
form input[type="submit"] { background: #c71e1c; color: #fff; border: none; cursor: pointer; font-size: 14px; font-weight: 700; padding: 12px; margin-top: 10px; }
form input[type="submit"]:hover { background: #a01816; }
table.services { width: 100%; border-collapse: collapse; }
table.services td { padding: 12px 8px; border-bottom: 1px solid #eee; }
table.services td:last-child { text-align: right; white-space: nowrap; font-weight: 700; }
hr { border: none; border-top: 1px solid #eee; margin: 30px 0; }
@media (max-width: 768px) {
  .header-inner { flex-direction: column; text-align: center; }
  .header-info { text-align: center; }
  .content { padding: 20px; }
  .footer nav a { display: block; margin: 5px 0; }
}