/* Custom list styling with icon */
#info .list-unstyled {
    list-style: none;
    padding-left: 0;
}

#info .list-unstyled li {
    position: relative;
    padding-left: 30px; /* Space for the icon */
    margin-bottom: 10px;
}

#info .list-unstyled li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="22" height="19" viewBox="0 0 22 19" fill="none"><path d="M20.0096 10.7592L21.0736 9.69985L20.0143 8.64048L13.2643 1.89048L12.2002 0.826416L10.0814 2.94985L11.1408 4.00923L15.3314 8.19985H1.7002H0.200195V11.1999H1.7002H15.3268L11.1361 15.3905L10.0814 16.4499L12.2002 18.5733L13.2596 17.5139L20.0096 10.7639V10.7592Z" fill="%230075FF"/></svg>'); /* Replace with your icon path */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media screen and (min-width:1199px){
    #info .container{
      max-width: 100% !important;
    }
  }
