#restaurant-business {
    background: #fff;
    color: #222;
    padding: 100px 5vw;
    font-family: 'Montserrat', sans-serif;
  }
  
  #restaurant-business h2,
  #restaurant-business h4,
  #restaurant-business p,
  #restaurant-business li {
    text-shadow: 0.5px 0.5px 2px rgba(0, 0, 0, 0.1); /* Optional light shadow */
  }
  
  .restaurant-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  
  .restaurant-text {
    flex: 1 1 55%;
  }
  
  .restaurant-text h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #00224D;
    margin-bottom: 20px;
  }
  
  .restaurant-subheading {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
  }
  
  .restaurant-text h4 {
    font-size: 1.3rem;
    font-style: italic;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .restaurant-list {
    list-style: none;
    padding-left: 0;
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  .restaurant-list li {
    margin-bottom: 10px;
  }
  
  .restaurant-image {
    flex: 1 1 40%;
    text-align: center;
  }
  
  .restaurant-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.0);
  }
  
  @media (max-width: 992px) {
    .restaurant-wrapper {
      flex-direction: column;
    }
  
    .restaurant-image img {
      max-width: 80%;
      margin-top: 30px;
    }
  
    .restaurant-text h2 {
      font-size: 2rem;
    }
  }
  