.main-footer {
    background-color: #000000;
    color: #CCCCCC;
    padding: 40px 40px 60px;
    /* 40px top for 80px total spacing with preceding section, 60px bottom */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.footer-content {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo img {
    height: 140px;
    width: auto;
    display: block;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.footer-link {
    color: #CCCCCC;
    text-decoration: none;
    font-family: 'Sui Generis', sans-serif;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #EF405C;
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.copyright {
    font-family: 'Sui Generis', sans-serif;
    font-size: 16px;
    color: #888888;
}

.footer-socials {
    position: absolute;
    right: 0;
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .footer-socials {
        position: static;
    }
}