.footer-link {
    color: #b5b5b5;
    display: block;
    margin-bottom: 6px;
    transition: 0.3s ease;
    font-size: 14px;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    font-size: 16px;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn.facebook:hover {
    background: #1877f2;
}
.social-btn.instagram:hover {
    background: #e1306c;
}
.social-btn.twitter:hover {
    background: #000000;
}
.social-btn.linkedin:hover {
    background: #0a66c2;
}
