.main-footer {
    background-color: #000000;
    color: #A1A1AA;
    padding: 50px 0 30px 0;
    margin-top: auto;
    font-family: 'IBM Plex Sans', sans-serif;
}
.footer-top-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-logo-social-column {
    flex: 1 1 250px;
}
.footer-logo {
    margin-bottom: 20px;
}
.footer-logo-img {
    width: 180px;
    height: auto;
}
.footer-social {
    display: flex;
    gap: 15px;
}
.footer-social a {
    color: #A1A1AA;
    transition: color 0.3s ease, transform 0.2s ease;
}
.footer-social a:hover {
    color: #FFFFFF;
    transform: scale(1.1);
}
.footer-links-columns {
    display: flex;
    gap: 50px;
    flex: 2 1 500px;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.footer-column h4 {
    font-family: 'Franklin Gothic Demi', 'Arial Narrow', Arial, sans-serif;
    color: #FFFFFF;
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column li {
    margin-bottom: 10px;
}
.footer-column a {
    color: #A1A1AA;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-column a:hover {
    color: #FFFFFF;
}
.footer-legal-section {
    border-top: 1px solid #3f3f46;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.8rem;
}
.footer-copyright {
    margin: 0;
}
.footer-legal-links a {
    color: #A1A1AA;
    margin-left: 20px;
    transition: color 0.3s ease;
}
.footer-legal-links a:hover {
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .footer-links-columns {
        justify-content: flex-start;
        gap: 30px;
    }
    .footer-legal-section {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-legal-links a {
        margin-left: 0;
        margin-right: 20px;
    }
}

