/* Telegram Link Styles */
.telegram-link {
    color: #e2e8f0 !important;
    transition: color 0.3s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.telegram-link:hover {
    color: #0088cc !important;
    transform: translateY(-2px);
}

.telegram-link i {
    font-size: 16px;
}

/* Telegram Button Hover Effect */
.telegram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .telegram-link {
        font-size: 14px;
    }
    
    .telegram-button {
        width: 100%;
        justify-content: center;
        padding: 12px 20px !important;
    }
    
    .contact-methods {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-methods p {
        text-align: center;
    }
}
