/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #ffffff;
  color: #fff;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #000000;
  text-decoration: none;
}

/* Hero */
.hero {
  background: url('https://www.busbora.co.tz/assets/img/bb_banner.webp') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  margin: 20px 0;
}

.cta-btn {
  background: #ffcc00;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

/* Routes */
.routes {
  padding: 50px 20px;
  text-align: center;
}

.route-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.route-card {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  flex: 1;
}

/* Footer */
footer {
  background: #004aad;
  color: #fff;
  text-align: center;
  padding: 20px;
}
