.bannerImage {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
  }
  
  .bannerImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .scheduleButton {
    position: absolute;
    bottom: 50px;
    left: 50px;
    background-color: #691;
    color: #ffffff;
    padding: 20px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    font-size: 20px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
  }
  
  .scheduleButton:hover {
    background-color: #351;
  }
  