.entry-header {
    display: none;
}

.page .entry-title {
    display: none;
}

/*		Keep the space  gaps limited so that the page looks more compact		*/
.give-wrap, .site-content {
    padding: 0px 0;
}

    .taxi-box {
      background-color: #1476ad; /* #ffcc00;	*/
      padding: 30px;
      border-radius: 8px;
      font-family: sans-serif;
      max-width: 1200px;
      margin: 40px auto;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      display: flex;
      justify-content: space-between;
      align-items: center;
      /*gap: 20px;*/
      flex-wrap: wrap; /* allows wrap on small screens */
}

    .taxi-text {
      font-size: 22px;
      flex: 1;
      min-width: 200px;
      color: #fff;
    }

    .taxi-button {
      background-color: #000;
      color: #fff;
      border: none;
      padding: 12px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 16px;
      white-space: nowrap;

	 text-decoration: none;
 /* display: inline-flex;*/
 			display: flex;	
		  align-items: center;
		  gap: 10px;  /*  space between icon and number */

				
}


.taxi-button .phone-icon {
  width: 32px;
  height: 32px;
  object-fit: contain; /* Keep image aspect ratio */
}


    .taxi-button:hover {
      background-color: #333;
    }

    @media (max-width: 600px) {
      .taxi-box {
        flex-direction: column;
        text-align: center;
      }

      .taxi-text {
        font-size: 20px;
      }
    }


/*	Keeps text 	in the middle me thinks		*/
    .center-box {
      display: flex;
      justify-content: center;
      align-items: center;
		  text-align: center;
				/*height: 200px;*/ /* or any height you want */
      /*background-color: #f0f0f0;
      border: 1px solid #ccc;*/
    }


.keep_left {
  text-align: center;
}



/*	Submit button colour for the Contact form 7			*/

.wpcf7 input.wpcf7-submit {
    background-color: #1476ad !important;
    border: none !important;
    color: #ffffff !important;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}


.wpcf7 input.wpcf7-submit:hover {
    background-color: #0f5d8a !important;
}

/*	Do I really need anything below this?	*/