.elementor-4514 .elementor-element.elementor-element-bd4f09a{--display:flex;}/* Start custom CSS for html, class: .elementor-element-9052240 *//* Root Colors */
:root {
  --brand: #0ea5a8;
  --dark: #0b1320;
  --pill: #16a34a;
  --pill-hover: #15803d;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --bg-soft: #f9fafb;
}

/* Global Container */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 20px;
}

/* Breadcrumb */
nav.breadcrumb {
  font-size: 14px;
  color: #475569;
  margin-bottom: 10px;
}
nav.breadcrumb a {
  color: #334155;
  text-decoration: none;
}
nav.breadcrumb a:hover {
  text-decoration: underline;
}

/* Headings */
h1 {
  font-size: 30px;
  margin: 6px 0 8px;
  color: var(--dark);
}
h2 {
  font-size: 22px;
  margin: 16px 0 8px;
  color: var(--dark);
}
.lead {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 12px;
}
.notice {
  font-size: 14px;
  color: #475569;
  background: var(--bg-soft);
  border-left: 4px solid var(--pill);
  padding: 10px 12px;
  border-radius: 6px;
  margin: 16px 0;
}

/* Cards Layout */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 16px 0;
}
.card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 18px 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.card h2 {
  font-size: 20px;
  margin-bottom: 8px;
}
ul.check {
  padding-left: 20px;
  margin: 0;
}
ul.check li {
  list-style: none;
  margin: 6px 0;
  position: relative;
  padding-left: 22px;
}
ul.check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--pill);
  font-weight: 600;
}

/* Button */
.btn {
  display: inline-block;
  background: var(--pill);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s ease;
  margin-right: 6px;
}
.btn:hover {
  background: var(--pill-hover);
}

/* Table (Fare Chart) */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 15px;
}
th, td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
}
thead th {
  background: #f1fafb;
  color: var(--dark);
  font-weight: 600;
}
tbody tr:nth-child(odd) {
  background: #fafafa;
}
tbody tr:hover {
  background: #f0fdfa;
}

/* FAQ */
.faq {
  margin-top: 16px;
}
.faq dt {
  font-weight: 700;
  color: var(--dark);
  margin-top: 10px;
}
.faq dd {
  color: var(--muted);
  margin: 4px 0 14px;
}

/* Utility */
.small {
  font-size: 13px;
}
.muted {
  color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
  .wrap {
    padding: 20px 14px;
  }
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 20px;
  }
  table {
    font-size: 14px;
  }
}/* End custom CSS */