.telegram-button {
    position: fixed;
    right: 30px;
    bottom: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    background-color: #2AABEE;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1000;
}

.telegram-button:hover {
    background-color: #229ED9;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
	color: #ffffff;
}

@media (max-width: 768px) {
    .telegram-button {
        right: 15px;
        bottom: 80px;
        padding: 12px 18px;
        font-size: 14px;
    }
}