p {
    margin: 0;
    color: #474747;
}
div {
    color: #474747;
}
.footer-separator {
    width: 100%;
    height: 1px;
    background-color: #E5E5E5;
}
.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    background-color: white;
    margin: 3.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 400;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.disclaimer-text {
    text-align: justify;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.footer-link {
    text-decoration: underline;
    color: #474747;
    font-weight: 400;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
}

.footer-logo img {
    height: 9rem;
    width: auto;
    object-fit: contain;
}

@media (min-width: 48rem) {
    .footer-container {
        grid-template-columns: 3fr 1fr;
        margin: 3.75rem 7.25rem;
    }

    .footer-links {
        gap: 1rem;
    }

    .footer-logo {
        margin-top: 0;
    }
}

.desktop-break {
    display: none;
}

@media (min-width: 48rem) {
    .desktop-break {
        display: block;
    }
}