.info-box {
    border: 1px solid #15d1a7;
    margin: 20px auto 40px;
    padding: 30px;
    max-width: 1000px;
    border-radius: 16px;
}

.info-box-header {
    font-weight: bold;
    margin-bottom: 10px;
}
.info-box-subheader {
    margin-bottom: 20px;
}
.info-box-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.info-box-column {
    flex: 1;
    min-width: 45%;
}
.info-box-highlight {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
    font-weight: bold;
    width: 100%;
}
@media (max-width: 768px) {
    .info-box-column {
        min-width: 100%;
    }
}
.info-box-column ul {
    list-style: none;
}

.info-box-column ul li:before {
    content: "—";
    position: relative;
    left: -5px;
}
