.address {
    margin-bottom: 20px;
}
.contact_section {
    display: flex;
    gap: 20px;
}
.contact {
    flex: 1;
    min-width: 300px;
}
.contact.primary {
    padding-right: 20px;
}
.contact.support {
    padding-left: 20px;
}

@media (max-width: 768px) {
    .contact.primary, .contact.support {
        border-right: none;
        padding: 0;
        min-width: 100%;
    }
    .contact.primary {
        border-bottom: 1px solid #ccc;
        padding-bottom: 20px;
    }
    .contact.support {
        padding-top: 20px;
    }
}

.submission_checklist ul {
    list-style-type: none;
    padding: 0;
}

.submission_checklist ul li {
    position: relative;
    padding: 1.43rem 1.43rem 1.43rem 2.857rem;
    border: 1px solid #ddd;
    font-size: .93rem;
}

.submission_checklist ul li::before {
    content: '\f00c'; /* Unicode for Font Awesome check icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 1rem; /* Adjust as needed */
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: #00b24e;
}