.footer {
    background: #ede9fe;
    color: #452d9f;
    padding: 1rem 0 0.5rem 0;
    text-align: center;
    margin-top: 4rem;
}
.footer .footer-links {
    margin-bottom: 1rem;
    text-align: right;
    padding-right: 3vw;
}
.footer .footer-links a {
    color: #452d9f;
    margin: 0 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    padding: 0.4rem 1.1rem;
    border-radius: 0.7rem;
}
.footer .footer-links a:hover {
    background: white;
    color: #452d9f;
}
.footer .socials {
    text-align: left;
    padding-left: 3vw;
}
.footer .socials a {
    margin: 0 0.5rem;
    color: #452d9f;
    font-size: 1.5rem;
    transition: color 0.2s;
}
@media (max-width: 700px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .socials {
        text-align: center !important;
        padding-left: 0 !important;
        padding-bottom: 1rem;
    }
    .footer-links {
        text-align: center !important;
        padding-right: 0 !important;
    }
} 