.aboutAndLegal {
    display: flex;
    gap: 6rem;
    flex-direction: row;
}

.aboutAndLegal a,
.aboutAndLegal h3,
.footerContainer {
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.aboutAndLegal a {
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.aboutAndLegal a:hover {
    color: #4797ff !important;
    transform: translateX(4px);
}

.aboutAndLegal a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: #4797ff;
    transition: width 0.3s ease;
}

.aboutAndLegal a:hover::before {
    width: 8px;
}

.footerContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0 1rem 0;
    gap: 2rem;
    color: white !important;
}

.aboutFooter {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.aboutAndLegalContainer {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    padding: 0 2rem;
    gap: 2rem;
}

@media (max-width: 992px) {
    .aboutAndLegalContainer {
        justify-content: center;
    }
}
