:root {
  --cream: #FFF6E9; --peach: #FFE4C4; --tan: #D9B382;
  --brown: #8A6B45; --ink: #2B2620; --muted: #6E6357; --white: #fff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink); background: var(--cream); line-height: 1.7;
}
header {
  background: rgba(255, 246, 233, 0.92); border-bottom: 1px solid rgba(217, 179, 130, 0.3);
  position: sticky; top: 0; backdrop-filter: blur(8px);
}
.nav {
  max-width: 800px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 10px;
}
.nav a { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.nav img { width: 36px; height: 36px; }
.nav span { font-size: 18px; font-weight: 800; }
main { max-width: 800px; margin: 0 auto; padding: 48px 24px 80px; }
h1 { font-size: 32px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 8px; }
.updated { color: var(--muted); font-size: 14px; margin-bottom: 36px; }
h2 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; }
h3 { font-size: 17px; font-weight: 700; margin: 22px 0 8px; }
p, li, td, th { color: #444; font-size: 16px; }
ul, ol { padding-left: 22px; margin: 8px 0 16px; }
li { margin-bottom: 6px; }
a { color: var(--brown); }
a.mail { color: var(--brown); font-weight: 600; }
table.info {
  width: 100%; border-collapse: collapse; margin: 16px 0 24px;
  background: var(--white); border: 1px solid rgba(217,179,130,0.4); border-radius: 12px; overflow: hidden;
}
table.info th, table.info td { padding: 12px 16px; text-align: left; vertical-align: top; }
table.info th {
  width: 38%; font-weight: 600; color: var(--ink);
  background: rgba(255, 228, 196, 0.45); border-bottom: 1px solid rgba(217,179,130,0.3);
}
table.info td { border-bottom: 1px solid rgba(217,179,130,0.25); }
table.info tr:last-child th, table.info tr:last-child td { border-bottom: none; }
.note {
  background: var(--white); border: 1px solid rgba(217,179,130,0.4);
  border-left: 4px solid var(--tan); border-radius: 10px; padding: 14px 18px; margin: 18px 0;
}
.pay-logos { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 14px 0 4px; }
.pay-logos span {
  background: var(--white); border: 1px solid rgba(217,179,130,0.45); border-radius: 8px;
  padding: 7px 14px; font-size: 13px; font-weight: 700; color: var(--brown); letter-spacing: 0.3px;
}
footer {
  border-top: 1px solid rgba(217,179,130,0.3); padding: 28px 24px;
  text-align: center; color: var(--muted); font-size: 14px;
}
footer .links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 12px; }
footer .links a { color: var(--muted); text-decoration: none; }
footer .links a:hover { color: var(--ink); }
@media (max-width: 560px) {
  h1 { font-size: 26px; }
  table.info th, table.info td { display: block; width: 100%; }
  table.info th { border-bottom: none; padding-bottom: 2px; }
}
