section .copyright {
    text-align: center;
    opacity: .5;
}

.checkout-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.checkout-contact-info h4 {
    margin: 0;
}

.checkout-contact-info a {
    text-decoration: none;
    color: #121212;
    display: flex;
    border: solid 1px #e2e2e2;
    width: 100%;
    justify-content: center;
    padding: 12px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: .1s ease;
    background-color: transparent;
}

.checkout-contact-info a:hover {
    background-color: white;
}