.social-buttons {
    position: fixed;
    bottom: 155px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 99;
}

.telegram-btn {
    background-color: #0088cc;
    color: white;
}

.whatsapp-btn, .telegram-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fab {
    font-size: 24px;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.whatsapp-btn:hover, .telegram-btn:hover {
    animation: pulse 1s infinite;
}

.whatsapp-btn:hover, .telegram-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
