.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-buttons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.floating-buttons a.facebook { background-color: #3b5998; }
.floating-buttons a.twitter { background-color: #1da1f2; }
.floating-buttons a.instagram { background-color: #e4405f; }
.floating-buttons a.linkedin { background-color: #0077b5; }
.floating-buttons a.youtube { background-color: #ff0000; }

.floating-buttons a:hover {
    transform: scale(1.1);
}
