*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #f5f7fa;
  color: #1a1a2e;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px 60px;
}

header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 0 32px;
  border-bottom: 2px solid #d0d8e8;
  margin-bottom: 40px; flex-wrap: wrap;
}
.logo-area { display: flex; align-items: center; gap: 14px; }
.logo-area img { height: 48px; width: auto; }
.site-title { font-size: 1.2rem; font-weight: 700; color: #0f1e3c; }

.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: #2a6fa8; text-decoration: none;
  font-size: 0.95rem; font-weight: 500;
  border: 2px solid #2a6fa8; padding: 8px 16px;
  border-radius: 100px; transition: background 0.2s, color 0.2s; white-space: nowrap;
}
.back-link:hover { background: #2a6fa8; color: #fff; }

.ls-badge {
  display: inline-block; background: #e8f4fb;
  color: #2a6fa8; border: 2px solid #2a6fa8;
  border-radius: 100px; padding: 4px 16px;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 16px;
}

h1 { font-size: 2.2rem; font-weight: 700; color: #0f1e3c; line-height: 1.2; margin-bottom: 8px; }
h2 {
  font-size: 1.5rem; font-weight: 700; color: #0f1e3c;
  margin-top: 48px; margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 2px solid #5ab4e0; display: inline-block;
}
p { margin-bottom: 16px; max-width: 620px; }
.intro { font-size: 1.25rem; color: #2a2a4a; margin-bottom: 32px; }

.card { background: #fff; border: 2px solid #d0d8e8; border-radius: 16px; padding: 24px 28px; margin-top: 24px; }
.card-icon { font-size: 2rem; margin-bottom: 10px; }
.card h3 { font-size: 1.2rem; font-weight: 700; color: #0f1e3c; margin-bottom: 8px; }

.route-box {
  display: flex; align-items: center; gap: 16px;
  background: #e8f4fb; border: 2px solid #5ab4e0;
  border-radius: 14px; padding: 20px 24px; margin-top: 24px; flex-wrap: wrap;
}
.route-stop-ls  { font-size: 1.1rem; font-weight: 700; color: #0f1e3c; }
.route-arrow-ls { font-size: 1.8rem; color: #5ab4e0; flex-shrink: 0; }

.times-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
@media (max-width: 500px) { .times-grid { grid-template-columns: 1fr; } }
.times-col { background: #fff; border: 2px solid #d0d8e8; border-radius: 12px; padding: 16px 20px; }
.times-col h4 { font-size: 1rem; font-weight: 700; color: #2a6fa8; margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid #d0d8e8; }
.times-col p { font-size: 1rem; margin-bottom: 4px; font-weight: 500; color: #0f1e3c; }
.times-col .break-note { font-size: 0.9rem; color: #666; font-weight: 400; margin: 8px 0; font-style: italic; }

.price-list { list-style: none; margin-top: 16px; }
.price-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid #e0e6f0; font-size: 1rem;
}
.price-list li:last-child { border-bottom: none; }
.price { font-weight: 700; color: #2a6fa8; font-size: 1.05rem; }

.highlight-box { background: #e8f4fb; border-left: 4px solid #2a6fa8; border-radius: 8px; padding: 16px 20px; margin-top: 20px; }
.highlight-box p { margin-bottom: 0; }

.cta-btn {
  display: inline-block; background: #5ab4e0; color: #0f1e3c;
  font-weight: 700; font-size: 1.1rem; padding: 16px 36px;
  border-radius: 100px; text-decoration: none; margin-top: 16px;
  transition: background 0.2s;
}
.cta-btn:hover { background: #8fd0f0; }

footer {
  margin-top: 64px; padding-top: 24px;
  border-top: 2px solid #d0d8e8;
  font-size: 0.9rem; color: #666;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
footer a { color: #2a6fa8; text-decoration: none; }
footer a:hover { text-decoration: underline; }
