.footer {
    background-color: #000000;
    padding: 40px 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-link:hover {
    background: linear-gradient(90deg, #23BFD2, #6AC28F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-address {
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin: 0;
    white-space: nowrap;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.social-links img {
    height: 24px;
    width: 24px;
}

.footer-copyright {
    color: #ffffff;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin: 0;
}

@media (max-width: 1200px) {
    .footer-content {
        gap: 30px;
    }

    .footer-link,
    .footer-address {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .footer {
        padding: 40px 40px;
    }

    .footer-content {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-link,
    .footer-address {
        font-size: 18px;
    }

    .footer-logo img {
        height: 50px;
    }

    .social-links img {
        height: 20px;
        width: 20px;
    }

    .footer-copyright {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 20px;
    }

    .footer-logo img {
        height: 40px;
    }
}