.responsive-line{
    width: 2px; /* Vertical line width */
    height: 400px; /* Vertical line height */
    background-color: black; /* Line color */
    /* Add any other desired styles */
}

@media (max-width: 991px) { /* Adjust breakpoint as needed */
    .responsive-line {
        width: 94%; /* Horizontal line width */
        height: 2px; /* Horizontal line height */
    }

    .right-column{
        justify-content: center;
        align-items: center;
     }
}

.red-strip{
    height: 30px;
    width: 100%;
    background-color:red;
    border-radius:30px;
}

@media (min-width: 991px){
    
}



.business-card{
    margin-top: -30px;
}


.left-column{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.right-column{
    display: flex;
    flex-direction: column;

}

ul{
    list-style-type:none;
    padding-left: 0;
    margin-left: 0;
}

li {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }

.card-descriptor {
    display: inline-block; /* Allows width and padding */
    width: 80px; 
    text-align: left; /* Aligns the label text to the left */
    padding-right: 10px; /* Adds space between the label and the content */
    margin-right: 10px;
}

.card-title{
    padding-top: 30px;
    padding-bottom: 30px;
}

.info-row{
    padding:5px;
}


.card-footer{
    display: flex;
    flex-direction: row;
    width:80%;
    justify-content: space-between;
    bottom: 0;
    margin-top:30px;
  }


  @media (max-width:471px){
    .card-title{
        text-align: center;
    }
    .responsive-line {
        width: 100%;
        height: 2px; /* Horizontal line height */
    }

    
  }