.taxi-booking-hero{
    background-size: cover;
    background-position: bottom center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.taxi-booking-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); /* 0.5 = 50% black overlay */
    z-index: 1;
}
section.taxi-booking-hero h1,
section.taxi-booking-hero p{
    color: white;
}
.taxi-booking-hero .container {
    position: relative;
    z-index: 2;
}

.taxi-booking-hero p{
    font-size: 1.5rem;
}

.taxi-fare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-family: Arial, sans-serif;
}

.taxi-fare-table th {
  background-color: #2b663c;
  color: #ffffff;
  padding: 12px;
  text-align: left;
}

.taxi-fare-table td {
  padding: 10px;
  border: 1px solid #ddd;
  color: #333;
  width: 25%;
}

.taxi-fare-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.taxi-fare-table tr:hover {
  background-color: #ffece7;
}

.road-distance-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #c15538;
  margin-top: 20px;
}

.turist-attraction .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.accordion-button:not(.collapsed){
  color: #ffffff;
  background-color: var(--primary-color);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 6.5L8 13l6.5-6.5L13.5 5 8 10.5 2.5 5z'/%3E%3C/svg%3E");
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 6.5L8 13l6.5-6.5L13.5 5 8 10.5 2.5 5z'/%3E%3C/svg%3E");
}

@media (max-width: 600px) {
  .taxi-fare-table thead {
    display: none;
  }

  .taxi-fare-table,
  .taxi-fare-table tbody,
  .taxi-fare-table tr,
  .taxi-fare-table td {
    display: block;
    width: 100%;
  }

  .taxi-fare-table tr {
    margin-bottom: 15px;
    border: 1px solid #ccc;
    padding: 10px;
  }

  .taxi-fare-table td {
    text-align: right;
    padding-left: 50%;
    position: relative;
  }

  .taxi-fare-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 15px;
    width: 45%;
    font-weight: bold;
    color: #2b663c;
    text-align: left;
  }
	.taxi-booking-hero{
		height:300px;
	}
	.heading h2{
		font-size:1.5rem;
	}
	h5 {
		font-size: 1.1rem !important;
	}
}