body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #222;
}

.back-to-home {
  text-align: center;
  padding: 10px;
  background: #222;
}
.back-to-home a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.cab-header {
  text-align: center;
  padding: 2rem;
  background: #ffeecc;
}
.cab-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cab-details {
  padding: 1.5rem;
}
.cab-details ul {
  list-style: disc;
  padding-left: 20px;
}
.cab-details table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.cab-details th, .cab-details td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}
.cab-details th {
  background: #ffd700;
}

.booking-form {
  padding: 2rem;
  background: #e6f7ff;
}
.booking-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
  margin: auto;
}
.booking-form input,
.booking-form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.booking-form button {
  background: #1da1f2;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}
.booking-form button:hover {
  background: #0d8ddc;
}

.route-map {
  text-align: center;
  padding: 2rem;
}
.route-map img {
  max-width: 100%;
  border-radius: 12px;
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .cab-header h1 {
    font-size: 1.5rem;
  }
  .booking-form form {
    padding: 0 1rem;
  }
}
