* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
    min-height: 100vh;
    background-color: #415A77;
    padding: 2vw;
}

.wrapper {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
}

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

ul li {
    display: grid;
    grid-template-columns: 1.2fr 3fr;
    align-items: center;
    padding-bottom: 7px;
    margin-bottom: 7px;
    border-bottom: 1px solid #ddd;
    gap: 15px;
}

ul li:last-child {
    border-bottom: 0;
}

strong {    
    position: relative;
    border-right: 1px solid #ddd;    
}

strong:after {
  content: "";
  position: absolute;
  height: calc(100% + 30px);
  width: 1px;
  background-color: #ddd;
  right: -1px;
  bottom: -15px;
}

@media (max-width: 675px) {
    body {
        padding: 5vw;
    }
    ul li {
        gap: 5px;
        grid-template-columns: 1fr;
    }
    strong { 
        display: block;
           border-right: 0;
    }
    strong:after {
        display: none;
    }
}